plivo
Version:
A Node.js SDK to make voice calls and send SMS using Plivo and to generate Plivo XML
22 lines (21 loc) • 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);
}