nunof07/smalltypes

View on GitHub
src/main/core/IllegalInheritanceError.ts

Summary

Maintainability
A
40 mins
Test Coverage
/**
 * Illegal inheritance exception.
 */
export class IllegalInheritanceError extends Error {
    constructor(message?: string) {
        super(message);
        Error.captureStackTrace(this, this.constructor);
    }
}