mirror of
https://github.com/game-ci/unity-builder.git
synced 2026-06-01 06:16:14 -07:00
9 lines
175 B
JavaScript
9 lines
175 B
JavaScript
class CommandExecutionError extends Error {
|
|
constructor(message) {
|
|
super(message);
|
|
this.name = 'CommandExecutionError';
|
|
}
|
|
}
|
|
|
|
export default CommandExecutionError;
|