Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/src/java.compiler/share/classes/javax/lang/model/element/UnknownDirectiveException.java
41161 views
1
/*
2
* Copyright (c) 2005, 2017, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation. Oracle designates this
8
* particular file as subject to the "Classpath" exception as provided
9
* by Oracle in the LICENSE file that accompanied this code.
10
*
11
* This code is distributed in the hope that it will be useful, but WITHOUT
12
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14
* version 2 for more details (a copy is included in the LICENSE file that
15
* accompanied this code).
16
*
17
* You should have received a copy of the GNU General Public License version
18
* 2 along with this work; if not, write to the Free Software Foundation,
19
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20
*
21
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22
* or visit www.oracle.com if you need additional information or have any
23
* questions.
24
*/
25
26
package javax.lang.model.element;
27
28
import javax.lang.model.UnknownEntityException;
29
30
/**
31
* Indicates that an unknown kind of module directive was encountered.
32
* This can occur if the language evolves and new kinds of directives are
33
* added to the {@code Directive} hierarchy. May be thrown by a
34
* {@linkplain ModuleElement.DirectiveVisitor directive visitor} to
35
* indicate that the visitor was created for a prior version of the language.
36
*
37
* @author Joseph D. Darcy
38
* @author Scott Seligman
39
* @author Peter von der Ahé
40
* @see ModuleElement.DirectiveVisitor#visitUnknown
41
* @since 9
42
*/
43
public class UnknownDirectiveException extends UnknownEntityException {
44
45
private static final long serialVersionUID = 269L;
46
47
private final transient ModuleElement.Directive directive;
48
private final transient Object parameter;
49
50
/**
51
* Creates a new {@code UnknownElementException}. The {@code p}
52
* parameter may be used to pass in an additional argument with
53
* information about the context in which the unknown directive was
54
* encountered; for example, the visit methods of {@link
55
* ModuleElement.DirectiveVisitor DirectiveVisitor} may pass in
56
* their additional parameter.
57
*
58
* @param d the unknown directive, may be {@code null}
59
* @param p an additional parameter, may be {@code null}
60
*/
61
public UnknownDirectiveException(ModuleElement.Directive d, Object p) {
62
super("Unknown directive: " + d);
63
directive = d;
64
parameter = p;
65
}
66
67
/**
68
* Returns the unknown directive.
69
* The value may be unavailable if this exception has been
70
* serialized and then read back in.
71
*
72
* @return the unknown directive, or {@code null} if unavailable
73
*/
74
public ModuleElement.Directive getUnknownDirective() {
75
return directive;
76
}
77
78
/**
79
* Returns the additional argument.
80
*
81
* @return the additional argument, or {@code null} if unavailable
82
*/
83
public Object getArgument() {
84
return parameter;
85
}
86
}
87
88