one-span-sign
Version:
Node module for the One Span E-Sign API.
18 lines (15 loc) • 503 B
JavaScript
const ExtendableError = require('es6-error');
class InitializationError extends ExtendableError {}
class InvalidSignerError extends ExtendableError {}
class InvalidDocumentError extends ExtendableError {}
class InvalidPackageError extends ExtendableError {}
class APIError extends ExtendableError {}
class NotImplementedError extends ExtendableError {}
module.exports = {
InitializationError,
InvalidSignerError,
InvalidDocumentError,
InvalidPackageError,
APIError,
NotImplementedError
};