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