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