mirror of
https://github.com/game-ci/unity-builder.git
synced 2026-01-29 12:19:06 +08:00
9 lines
181 B
JavaScript
9 lines
181 B
JavaScript
class NotImplementedException extends Error {
|
|
constructor(message) {
|
|
super(message);
|
|
this.name = 'NotImplementedException';
|
|
}
|
|
}
|
|
|
|
export default NotImplementedException;
|