1 9 package org.ozoneDB; 10 11 12 21 public class UnexpectedException extends RuntimeException { 22 23 24 public UnexpectedException() { 25 } 26 27 28 public UnexpectedException( String message ) { 29 super( message ); 30 } 31 32 public UnexpectedException(String message, Throwable cause) { 33 super(message, cause); 34 } 35 36 public UnexpectedException(Throwable cause) { 37 super(cause); 38 } 39 40 } 41 | Popular Tags |