mirror of
https://github.com/donl/plivo-node.git
synced 2026-05-26 06:12:28 -06:00
21 lines
643 B
TypeScript
21 lines
643 B
TypeScript
export class PlivoRestError extends Error {
|
|
constructor(message?: string);
|
|
}
|
|
export class ResourceNotFoundError extends PlivoRestError {
|
|
constructor(message?: string);
|
|
}
|
|
export class ServerError extends PlivoRestError {
|
|
constructor(message?: string);
|
|
}
|
|
export class InvalidRequestError extends PlivoRestError {
|
|
constructor(message?: string);
|
|
}
|
|
export class PlivoXMLError extends PlivoRestError {
|
|
constructor(message?: string);
|
|
}
|
|
export class PlivoXMLValidationError extends PlivoRestError {
|
|
constructor(message?: string);
|
|
}
|
|
export class AuthenticationError extends PlivoRestError {
|
|
constructor(message?: string);
|
|
}
|