importResponsableExceptionfrom'./ResponsableException';
exportdefaultclassForbiddenExceptionextendsResponsableException {
message: string;
constructor(message?: string);
/**
* Get the response code
*/getCode(): number;
/**
* Get the exception name
*/getName(): string;
}