service.error.ts 199 B

123456789
  1. import { MidwayError } from '@midwayjs/core';
  2. export class ServiceError extends MidwayError {
  3. group: string;
  4. constructor(errcode: string) {
  5. super(errcode);
  6. this.group = 'service';
  7. }
  8. }