mc-publish/src/utils/soft-error.ts

9 lines
185 B
TypeScript
Raw Normal View History

export default class SoftError extends Error {
readonly soft: boolean;
constructor(soft: boolean, message?: string) {
super(message);
this.soft = soft;
}
}