You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CannotUpdateException.java 301B

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