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