graycoreio/daffodil

View on GitHub
libs/reviews/driver/src/errors/invalid-api-response.ts

Summary

Maintainability
A
0 mins
Test Coverage
import {
  DaffError,
  DaffInheritableError,
} from '@daffodil/core';

export class DaffReviewsInvalidAPIResponseError extends DaffInheritableError implements DaffError {
  public readonly code: string = 'DAFF_GEOGRAPHY_INVALID_API_RESPONSE';

  constructor(public message: string) {
    super(message);
  }
}