- java.lang.Object
 -  
      
- java.lang.Throwable
 -  
        
- java.lang.Exception
 -  
          
- java.lang.RuntimeException
 -  
            
- javax.xml.catalog.CatalogException
 
 
 
 
 
-  
       
- All Implemented Interfaces:
 -  
         
Serializable 
public class CatalogException extends RuntimeException
异常类处理在处理或使用目录时可能发生的错误。- 从以下版本开始:
 - 9
 - 另请参见:
 - Serialized Form
 
 
-  
        
       
-  
             
构造方法摘要
构造方法 Constructor 描述 CatalogException(String message)使用指定的详细消息构造新的CatalogException。CatalogException(String message, Throwable cause)构造一个具有指定的详细信息和原因的新的CatalogException。 
-  
             
方法摘要
-  
               
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait 
-  
               
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString 
 -  
               
 
 -  
             
 
-  
        
       
-  
             
构造方法详细信息
-  
CatalogException
public CatalogException(String message)
使用指定的详细消息构造新的CatalogException。 原因未初始化,可以随后通过调用Throwable.initCause(java.lang.Throwable)进行初始化。- 参数
 -  
              
message- 详细信息 
 
-  
CatalogException
public CatalogException(String message, Throwable cause)
构造一个具有指定的详细信息和原因的新的CatalogException。- 参数
 -  
              
message- 详细信息(通过Throwable.getMessage()方法保存供以后检索) -  
              
cause- 原因(由Throwable.getCause()方法保存供以后检索)。 (Anull值是允许的,并且表示原因不存在或未知。) 
 
 -  
 
 -