123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- /*
- * MARTINS.js Free Edition
- * GPU-accelerated Augmented Reality for the web
- * Copyright (C) 2022 Alexandre Martins <alemartf(at)gmail.com>
- * https://github.com/alemart/martins-js
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License version 3
- * as published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
- *
- * errors.ts
- * Error classes
- */
-
- type ErrorCause = Error | null;
-
- /**
- * Generic error class
- */
- abstract class MartinsError extends Error
- {
- /**
- * Constructor
- * @param message error message
- * @param cause optional error cause
- */
- constructor(message = '', public readonly cause: ErrorCause = null)
- {
- super(`${message}\n${cause ? cause.toString() : ''}`);
- }
-
- /**
- * Error name
- */
- public get name(): string
- {
- return this.constructor.name;
- }
- }
-
- /**
- * A method has received one or more illegal arguments
- */
- export class IllegalArgumentError extends MartinsError
- {
- }
-
- /**
- * The method arguments are valid, but the method can't be called due to the
- * current state of the object
- */
- export class IllegalOperationError extends MartinsError
- {
- }
-
- /**
- * The requested operation is not supported
- */
- export class NotSupportedError extends MartinsError
- {
- }
-
- /**
- * Access denied
- */
- export class AccessDeniedError extends MartinsError
- {
- }
-
- /**
- * Assertion error
- */
- export class AssertionError extends MartinsError
- {
- }
-
- /**
- * Tracking error
- */
- export class TrackingError extends MartinsError
- {
- }
-
- /**
- * Detection error
- */
- export class DetectionError extends MartinsError
- {
- }
-
- /**
- * Training error
- */
- export class TrainingError extends MartinsError
- {
- }
|