1 16 17 package org.apache.jetspeed.om.registry; 18 19 import org.apache.jetspeed.util.JetspeedException; 20 21 22 28 29 public class RegistryException extends JetspeedException { 30 31 public static final String REGISTRY_NOT_FOUND 32 = "The specified registry does not exist."; 33 34 public RegistryException() { 35 super(); 36 } 37 38 public RegistryException( String message ) { 39 super( message ); 40 } 41 42 43 } 44 45 | Popular Tags |