1 2 3 4 5 6 7 8 9 10 11 12 13 14
package sample.evolve; /** * Signals that VersionManager.update() fails. */ public class CannotUpdateException extends Exception { public CannotUpdateException(String msg) { super(msg); } public CannotUpdateException(Exception e) { super("by " + e.toString()); } }