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