package com.srbenoit.math.linear;

/**
 * An exception when a matrix that has not been completely evaluated is used.
 */
public class MatrixNotCompleteException extends Exception {

    /** version number for serialization */
    private static final long serialVersionUID = 4180455776728790366L;

    /**
     * Constructs a new <code>MatrixNotCompleteException</code>.
     *
     * @param  message  the exception message.
     */
    public MatrixNotCompleteException(final String message) {

        super(message);
    }

    /**
     * Constructs a new <code>MatrixNotCompleteException</code>.
     *
     * @param  message  the exception message.
     * @param  cause    the exception that led to this exception.
     */
    public MatrixNotCompleteException(final String message, final Throwable cause) {

        super(message, cause);
    }
}
