@jaricardodev/ews-javascript-api
Version:
EWS Managed api in JavaScript
10 lines • 378 B
text/typescript
import {Exception} from "./Exception";
export class NotSupportedException extends Exception {
ParamName: string = null;
constructor();
constructor(message: string);
constructor(message: string, innerException: Exception);
constructor(message: string = null, innerException: Exception = null) {
super(message, innerException);
}
}