I'd like to make a feature suggestion: in 0.9.1 class PointUnreachableException has only 1 constructor without parameters. However it would be nice to have a constructor with string argument, like most other Exceptions do. This is probably a bug since the code of this class says:
- Code: Select all
public class PointUnreachableException extends Exception {
// Inherits everything from Exception
}
However, constructors are not inherited in java this way, they should be explicitly defined and use super(...) calls.
