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

org.ccsds.moims.mo.mal.InternalException Maven / Gradle / Ivy

The newest version!
package org.ccsds.moims.mo.mal;

/**
 * The InternalException exception. An internal error has occurred.
 */
public final class InternalException extends org.ccsds.moims.mo.mal.MOErrorException {

    /**
     * Constructs a new InternalException exception.
     * 
     */
    public InternalException() {
        super(MALHelper.INTERNAL_ERROR_NUMBER, "");
    }

    /**
     * Constructs a new InternalException exception.
     * 
     * @param extraInformation The extraInformation of the exception.
     */
    public InternalException(Object extraInformation) {
        super(MALHelper.INTERNAL_ERROR_NUMBER, extraInformation);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy