Files
unity-builder/src/model/error/command-execution-error.js
2020-04-26 21:45:10 +02:00

9 lines
175 B
JavaScript

class CommandExecutionError extends Error {
constructor(message) {
super(message);
this.name = 'CommandExecutionError';
}
}
export default CommandExecutionError;