camelCaseDave/xrm-mock

View on GitHub
src/xrm-mock/errorresponse/errorresponse.mock.ts

Summary

Maintainability
A
1 hr
Test Coverage
F
50%
export class ErrorResponseMock implements Xrm.ErrorResponse {
  public errorCode: number;
  public message: string;

  constructor(errorCode: number, message: string) {
    this.errorCode = errorCode;
    this.message = message;
  }
}