Common.ts 102 B

12345
  1. export class NotImplementException extends Error {
  2. constructor() {
  3. super('not implement')
  4. }
  5. }