| import { ResponseError } from './abstract/response.error'; | |
| export class TransferCredentialError extends ResponseError { | |
| constructor(message: string) { | |
| super(message, 400, 400); | |
| } | |
| } | |
| import { ResponseError } from './abstract/response.error'; | |
| export class TransferCredentialError extends ResponseError { | |
| constructor(message: string) { | |
| super(message, 400, 400); | |
| } | |
| } | |