- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- javax.lang.model.UnknownEntityException
-
- All Implemented Interfaces:
-
Serializable
- 已知直接子类:
-
UnknownAnnotationValueException
,UnknownDirectiveException
,UnknownElementException
,UnknownTypeException
public class UnknownEntityException extends RuntimeException
例外的超类,表示遇到一个未知类型的实体。 如果语言演变和引入新的构造,就会发生这种情况。 访问者可能会抛出此异常的子类,以指示访问者是为先前版本的语言创建的。- API Note:
- 对于不同种类的未知实体特定的异常的常见超类允许单个catch块容易地提供对这些相关条件的统一处理。
- 从以下版本开始:
- 1.7
- 另请参见:
-
UnknownElementException
,UnknownAnnotationValueException
,UnknownTypeException
, Serialized Form
-
-
构造方法摘要
构造方法 Modifier Constructor 描述 protected
UnknownEntityException(String message)
创建一个新的UnknownEntityException
与指定的详细消息。
-
方法摘要
-
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
-
-
-
-
构造方法详细信息
-
UnknownEntityException
protected UnknownEntityException(String message)
创建一个新的UnknownEntityException
具有指定的详细消息。- 参数
-
message
- 详细信息
-
-