import ExceptionResponse from '../../Types/ExceptionResponse'; import Exception from '../Exception'; export default class LoggingChannelDoesNotExistsException extends Exception { protected channel: string; protected httpCode: number; protected code: number; protected loggingChannel: string; /** * Constructor */ constructor(message: string, channel: string); /** * Handle exception */ handle(exception: this): ExceptionResponse; }