All Downloads are FREE. Search and download functionalities are using the official Maven repository.

uk.num.numlib.exc.NumException Maven / Gradle / Ivy

/*
 * Copyright (c) 2019. NUM Technology Ltd
 */

package uk.num.numlib.exc;

/**
 * Used to report errors detected by the NUM Library code.
 *
 * @author tonywalmsley
 */
public abstract class NumException extends Exception {
    public NumException() {
    }

    public NumException(final String message) {
        super(message);
    }

    public NumException(final String message, final Throwable cause) {
        super(message, cause);
    }

    public NumException(final Throwable cause) {
        super(cause);
    }

    public NumException(final String message, final Throwable cause, final boolean enableSuppression, final boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy