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