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