Kinvey/js-sdk

View on GitHub
packages/js-sdk/src/errors/appProblem.ts

Summary

Maintainability
A
40 mins
Test Coverage
import { KinveyError } from './kinvey';

export class AppProblemError extends KinveyError {
  constructor(message = 'There is a problem with this app backend that prevents execution of this operation. Please contact support@kinvey.com for assistance.', debug?: string) {
    super(message, debug);
    this.name = 'AppProblemError';
  }
}