@jaricardodev/ews-javascript-api
Version:
EWS Managed api in JavaScript
25 lines (24 loc) • 1.01 kB
text/typescript
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);
}
}