UNPKG

@jaricardodev/ews-javascript-api

Version:
25 lines (24 loc) 1.01 kB
import {Exception} from "./Exception"; import {ServiceLocalException} from "./ServiceLocalException"; export class ServiceXmlSerializationException extends ServiceLocalException { /** * Initializes a new instance of **ServiceXmlSerializationException**. */ constructor(); /** * Initializes a new instance of **ServiceXmlSerializationException**. * * @param {string} message The message that describes the error. */ constructor(message: string); /** * Initializes a new instance of **ServiceXmlSerializationException**. * * @param {string} message The message that describes the error. * @param {Exception} innerException The exception that is the cause of the current exception. */ constructor(message: string, innerException: Exception); constructor(message: string = null, innerException: Exception = null) { super(message, innerException); } }