@awayjs/core
Version:
AwayJS core classes
14 lines • 524 B
TypeScript
import { ErrorBase } from './ErrorBase';
/**
* AbstractMethodError is thrown when an abstract method is called. The method in question should be overridden
* by a concrete subclass.
*/
export declare class AbstractMethodError extends ErrorBase {
/**
* Create a new AbstractMethodError.
* @param message An optional message to override the default error message.
* @param id The id of the error.
*/
constructor(message?: string, id?: number);
}
//# sourceMappingURL=AbstractMethodError.d.ts.map