mirror of
https://github.com/game-ci/unity-builder.git
synced 2026-02-01 22:29:07 +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;
|