Files
secondo/Algebras/Rose/RoseJava/twodsack/util/number/RationalClassUndefinedException.java

30 lines
728 B
Java
Raw Normal View History

2026-01-23 17:03:45 +08:00
/*
* RationalClassUndefinedException.java 2005-05-13
*
* Dirk Ansorge, FernUniversitaet Hagen
*
*/
package twodsack.util.number;
/**
* An instance of this exception is thrown, when methods on {@link Rational}s are called but the underlying class extending the Rational class was not
* defined yet.
*/
public class RationalClassUndefinedException extends RuntimeException {
/**
* Constructs an 'empty' exception.
*/
public RationalClassUndefinedException() { super(); }
/**
* Constructs an exception with an error message.
*
* @param s the error message
*/
public RationalClassUndefinedException(String s) { super(s); }
}//end Exception RationalClassUndefinedException