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.

CannotCreateException.java 309B

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