You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.2 KiB
58 lines
1.2 KiB
/*
|
|
* Copyright (c) 2009, Oracle and/or its affiliates. All rights reserved.
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
|
|
package javax.lang.model;
|
|
|
|
/**
|
|
* Superclass of exceptions which indicate that an unknown kind of
|
|
* entity was encountered. This situation can occur if the language
|
|
* evolves and new kinds of constructs are introduced. Subclasses of
|
|
* this exception may be thrown by visitors to indicate that the
|
|
* visitor was created for a prior version of the language.
|
|
*
|
|
* <p>A common superclass for those exceptions allows a single catch
|
|
* block to have code handling them uniformly.
|
|
*
|
|
* @author Joseph D. Darcy
|
|
* @see javax.lang.model.element.UnknownElementException
|
|
* @see javax.lang.model.element.UnknownAnnotationValueException
|
|
* @see javax.lang.model.type.UnknownTypeException
|
|
* @since 1.7
|
|
*/
|
|
public class UnknownEntityException extends RuntimeException {
|
|
|
|
private static final long serialVersionUID = 269L;
|
|
|
|
/**
|
|
* Creates a new {@code UnknownEntityException} with the specified
|
|
* detail message.
|
|
*
|
|
* @param message the detail message
|
|
*/
|
|
protected UnknownEntityException(String message) {
|
|
super(message);
|
|
}
|
|
}
|