import ResponsableException from './ResponsableException';
export default class AuthenticationException extends ResponsableException {
    protected error?: Error;
    constructor(error?: Error | string);
    /**
     * Get the response code
     */
    getCode(): number;
    /**
     * Get the exception name
     */
    getName(): string;
}
