Searched refs:OpenDataException (Results 1 - 25 of 35) sorted by relevance

12

/openjdk7/jdk/src/share/classes/javax/management/openmbean/
H A DOpenDataException.java39 public class OpenDataException extends JMException { class in inherits:JMException
44 * An OpenDataException with no detail message.
46 public OpenDataException() { method in class:OpenDataException
51 * An OpenDataException with a detail message.
55 public OpenDataException(String msg) { method in class:OpenDataException
H A DOpenMBeanParameterInfoSupport.java168 } catch (OpenDataException e) {
199 * @throws OpenDataException if {@code defaultValue} is not a
208 throws OpenDataException {
248 * @throws OpenDataException if {@code defaultValue} is not a
263 throws OpenDataException {
307 * @throws OpenDataException if {@code defaultValue}, {@code
325 throws OpenDataException {
337 throws OpenDataException {
H A DOpenMBeanAttributeInfoSupport.java200 } catch (OpenDataException e) {
239 * @throws OpenDataException if {@code defaultValue} is not a
251 throws OpenDataException {
303 * @throws OpenDataException if {@code defaultValue} is not a
321 throws OpenDataException {
373 * @throws OpenDataException if {@code defaultValue}, {@code
394 throws OpenDataException {
409 throws OpenDataException {
455 static void check(OpenMBeanParameterInfo info) throws OpenDataException {
474 throw new OpenDataException("Defaul
[all...]
H A DCompositeDataSupport.java108 * @throws OpenDataException <tt>itemNames[]</tt> or
117 throws OpenDataException {
123 throws OpenDataException {
141 throw new OpenDataException("Duplicate item name " + name);
164 * @throws OpenDataException <tt>items</tt>' size differs from the
175 throws OpenDataException {
200 throws OpenDataException {
220 throw new OpenDataException(
234 throw new OpenDataException(
H A DOpenType.java175 * @throws OpenDataException if <var>className</var> is not one of the allowed Java class names for open data
179 String description) throws OpenDataException {
222 private static String validClassName(String className) throws OpenDataException {
244 throw new OpenDataException("Argument className=\"" + className +
261 throw new OpenDataException("Argument className=\""+ className +
H A DArrayType.java283 * @throws OpenDataException if <var>elementType's className</var> is not
288 OpenType<?> elementType) throws OpenDataException {
361 * @throws OpenDataException if {@code primitiveArray} is {@code true} and
368 boolean primitiveArray) throws OpenDataException {
397 throws OpenDataException {
408 throws OpenDataException {
425 // but for compatibility reasons we throw an OpenDataException.
429 throw new OpenDataException("Element type is not primitive: "
443 throws OpenDataException {
454 throws OpenDataException {
[all...]
H A DTabularType.java101 * @throws OpenDataException if an element's value of <var>indexNames</var>
107 String[] indexNames) throws OpenDataException {
128 throw new OpenDataException("Argument's element value indexNames["+ i +"]=\""+ indexNames[i] +
/openjdk7/jdk/src/share/classes/sun/management/
H A DMappedMXBeanType.java58 * OpenDataException will be thrown if a Java type is not supported.
72 throws OpenDataException {
101 throw new OpenDataException(javaType +
110 throws OpenDataException {
117 throws OpenDataException {
124 throw new OpenDataException("Recursive data structure");
131 throws OpenDataException {
137 throws OpenDataException, InvalidObjectException {
146 throws OpenDataException {
181 throws OpenDataException;
[all...]
H A DStackTraceElementCompositeData.java31 import javax.management.openmbean.OpenDataException;
77 } catch (OpenDataException e) {
88 } catch (OpenDataException e) {
H A DMemoryNotifInfoCompositeData.java33 import javax.management.openmbean.OpenDataException;
70 } catch (OpenDataException e) {
81 } catch (OpenDataException e) {
H A DMemoryUsageCompositeData.java32 import javax.management.openmbean.OpenDataException;
69 } catch (OpenDataException e) {
80 } catch (OpenDataException e) {
H A DVMOptionCompositeData.java33 import javax.management.openmbean.OpenDataException;
70 } catch (OpenDataException e) {
81 } catch (OpenDataException e) {
H A DGcInfoCompositeData.java43 import javax.management.openmbean.OpenDataException;
123 } catch (OpenDataException e) {
154 } catch (OpenDataException e) {
186 } catch (OpenDataException e) {
231 } catch (OpenDataException e) {
250 } catch (OpenDataException e) {
284 } catch (OpenDataException e) {
H A DMonitorInfoCompositeData.java32 import javax.management.openmbean.OpenDataException;
82 } catch (OpenDataException e) {
96 } catch (OpenDataException e) {
H A DGarbageCollectionNotifInfoCompositeData.java34 import javax.management.openmbean.OpenDataException;
100 } catch (OpenDataException e) {
126 } catch (OpenDataException e) {
210 } catch (OpenDataException e) {
H A DGcInfoBuilder.java37 import javax.management.openmbean.OpenDataException;
165 } catch (OpenDataException e) {
/openjdk7/jdk/test/javax/management/Introspector/
H A DNotCompliantCauseTest.java48 import javax.management.openmbean.OpenDataException;
111 if (cause instanceof OpenDataException) break;
114 if (! (cause instanceof OpenDataException))
117 OpenDataException.class.getName()+"): "+cause, e);
/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DMXBeanMappingFactory.java57 * throws OpenDataException {
117 * @throws OpenDataException if this type cannot be mapped. This
123 throws OpenDataException;
H A DMXBeanMapping.java30 import javax.management.openmbean.OpenDataException;
64 * public MyLinkedListMapping(Type type) throws OpenDataException {
67 * throw new OpenDataException("Mapping only valid for MyLinkedList");
80 * public Object toOpenValue(Object javaValue) throws OpenDataException {
191 * @throws OpenDataException if the value cannot be converted.
194 throws OpenDataException;
H A DConvertingMethod.java34 import javax.management.openmbean.OpenDataException;
42 } catch (OpenDataException ode) {
125 throws OpenDataException {
135 throws OpenDataException {
157 throws OpenDataException {
196 } catch (OpenDataException e) {
208 private ConvertingMethod(Method m) throws OpenDataException {
H A DDefaultMXBeanMappingFactory.java70 import javax.management.openmbean.OpenDataException;
136 public final Object toOpenValue(Object javaValue) throws OpenDataException {
147 throws OpenDataException;
243 throws OpenDataException {
245 throw new OpenDataException(
258 } catch (OpenDataException e) {
269 throws OpenDataException {
298 throw new OpenDataException("Cannot map type: " + objType);
315 throws OpenDataException {
358 throws OpenDataException {
[all...]
H A DMXBeanLookup.java39 import javax.management.openmbean.OpenDataException;
117 throws OpenDataException {
138 throw new OpenDataException(
/openjdk7/jdk/test/java/lang/management/CompositeData/
H A DOpenTypeConverter.java82 InProgress() throws OpenDataException {
107 } catch (OpenDataException e) {
116 throws OpenDataException {
123 throw new OpenDataException("Recursive data structure");
141 private static OpenType makeArrayType(Class c) throws OpenDataException {
149 throws OpenDataException {
/openjdk7/jdk/src/share/classes/javax/management/
H A DMXBean.java46 import javax.management.openmbean.OpenDataException;
1136 Open types is signaled with an {@link OpenDataException}. This
1157 <p>Depending on the context, the {@code OpenDataException} or
1162 OpenDataException} or {@code InvalidObjectException} (as
/openjdk7/jdk/test/javax/management/mxbean/
H A DMXBeanRefTest.java44 import javax.management.openmbean.OpenDataException;
89 e.getCause() instanceof OpenDataException)

Completed in 67 milliseconds

12