crusader 77387a5e64 ing
2018-09-06 00:12:32 +09:00

14 lines
349 B
TypeScript

export class SubscriberParameterError extends Error {
public constructor(message?: string) {
super(message);
Object.setPrototypeOf(this, new.target.prototype);
}
}
export class SubscriberExistError extends Error {
public constructor(message?: string) {
super(message);
Object.setPrototypeOf(this, new.target.prototype);
}
}