microsoft-speech-browser-sdk
Version:
Microsoft Speech SDK for browsers
73 lines (66 loc) • 1.77 kB
text/typescript
/**
* The error that is thrown when an argument passed in is null.
*
* @export
* @class ArgumentNullError
* @extends {Error}
*/
export class ArgumentNullError extends Error {
/**
* Creates an instance of ArgumentNullError.
*
* @param {string} argumentName Name of the argument that is null
*
* @memberOf ArgumentNullError
*/
public constructor(argumentName: string) {
super(argumentName);
this.name = "ArgumentNull";
this.message = argumentName;
}
}
/**
* The error that is thrown when an invalid operation is performed in the code.
*
* @export
* @class InvalidOperationError
* @extends {Error}
*/
// tslint:disable-next-line:max-classes-per-file
export class InvalidOperationError extends Error {
/**
* Creates an instance of InvalidOperationError.
*
* @param {string} error The error
*
* @memberOf InvalidOperationError
*/
public constructor(error: string) {
super(error);
this.name = "InvalidOperation";
this.message = error;
}
}
/**
* The error that is thrown when an object is disposed.
*
* @export
* @class ObjectDisposedError
* @extends {Error}
*/
// tslint:disable-next-line:max-classes-per-file
export class ObjectDisposedError extends Error {
/**
* Creates an instance of ObjectDisposedError.
*
* @param {string} objectName The object that is disposed
* @param {string} error The error
*
* @memberOf ObjectDisposedError
*/
public constructor(objectName: string, error?: string) {
super(error);
this.name = objectName + "ObjectDisposed";
this.message = error;
}
}