/** * This class provides a subclass of {Error} to provide functionality on recoverable errors. * * @extends {Error}
*/
export class Exception extends Error { /** * Default Constructor
*/
constructor(message) { super(message);
}
}
/** * This class provides a subclass of {Error} to provide functionality on non recoverable errors. * * @extends {Error}
*/
export class RuntimeException extends Error { /** * Default Constructor
*/
constructor(message) { super(message);
}
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.