UNPKG

@jaricardodev/ews-javascript-api

Version:
16 lines (13 loc) 319 B
/** * @internal Defines the type of error handling used for service method calls. */ export enum ServiceErrorHandling { /** * Service method should return the error(s). */ ReturnErrors = 0, /** * Service method should throw exception when error occurs. */ ThrowOnError = 1 }