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