Repository URL to install this package:
|
Version:
7.0.10 ▾
|
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
class RuntimeException extends Error {
constructor(message = ``) {
super(message);
}
what() {
return this.message;
}
}
exports.RuntimeException = RuntimeException;