01: package sample.evolve;
02:
03: /**
04: * Signals that VersionManager.newInstance() fails.
05: */
06: public class CannotCreateException extends RuntimeException {
07: public CannotCreateException(String s) {
08: super (s);
09: }
10:
11: public CannotCreateException(Exception e) {
12: super ("by " + e.toString());
13: }
14: }
|