mirror of
https://github.com/donl/plivo-node.git
synced 2026-05-26 06:12:28 -06:00
7 lines
401 B
JavaScript
7 lines
401 B
JavaScript
var PlivoRestError = require('./restException');
|
|
export class ResourceNotFoundError extends PlivoRestError { }
|
|
export class ServerError extends PlivoRestError { }
|
|
export class InvalidRequestError extends PlivoRestError { }
|
|
export class PlivoXMLError extends PlivoRestError { }
|
|
export class PlivoXMLValidationError extends PlivoRestError { }
|
|
export class AuthenticationError extends PlivoRestError { }
|