Searched refs:PropertyException (Results 1 - 10 of 10) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/bind/
H A DPropertyException.java40 public class PropertyException extends JAXBException { class in inherits:JAXBException
43 * Construct a PropertyException with the specified detail message. The
48 public PropertyException(String message) { method in class:PropertyException
53 * Construct a PropertyException with the specified detail message and
59 public PropertyException(String message, String errorCode) { method in class:PropertyException
64 * Construct a PropertyException with a linkedException. The detail
69 public PropertyException(Throwable exception) { method in class:PropertyException
74 * Construct a PropertyException with the specified detail message and
80 public PropertyException(String message, Throwable exception) { method in class:PropertyException
85 * Construct a PropertyException wit
92 public PropertyException( method in class:PropertyException
106 public PropertyException(String name, Object value) { method in class:PropertyException
[all...]
H A DValidator.java248 * a PropertyException being thrown. See <a href="#supportedProps">
256 * @throws PropertyException when there is an error processing the given
263 throws PropertyException;
270 * a PropertyException being thrown. See <a href="#supportedProps">
276 * @throws PropertyException
283 public Object getProperty( String name ) throws PropertyException;
H A DBinder.java380 * a PropertyException being thrown. See
390 * @throws PropertyException when there is an error processing the given
395 abstract public void setProperty( String name, Object value ) throws PropertyException;
405 * a PropertyException being thrown. See
413 * @throws PropertyException
419 abstract public Object getProperty( String name ) throws PropertyException;
H A DMarshaller.java580 * a PropertyException being thrown. See <a href="#supportedProps">
588 * @throws PropertyException when there is an error processing the given
594 throws PropertyException;
601 * a PropertyException being thrown. See <a href="#supportedProps">
607 * @throws PropertyException
613 public Object getProperty( String name ) throws PropertyException;
H A DUnmarshaller.java915 * a PropertyException being thrown. See <a href="#supportedProps">
923 * @throws PropertyException when there is an error processing the given
929 throws PropertyException;
936 * a PropertyException being thrown. See <a href="#supportedProps">
942 * @throws PropertyException
948 public Object getProperty( String name ) throws PropertyException;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/
H A DBinderImpl.java31 import javax.xml.bind.PropertyException;
210 public Object getProperty(String name) throws PropertyException {
216 throw new PropertyException(name);
220 PropertyException pe = null;
225 } catch (PropertyException p) {
232 } catch (PropertyException p) {
240 public void setProperty(String name, Object value) throws PropertyException {
246 throw new PropertyException(name, value);
249 PropertyException pe = null;
254 } catch (PropertyException
[all...]
H A DMarshallerImpl.java42 import javax.xml.bind.PropertyException;
458 public Object getProperty(String name) throws PropertyException {
478 public void setProperty(String name, Object value) throws PropertyException {
486 throw new PropertyException(
496 throw new PropertyException(
533 private void checkBoolean( String name, Object value ) throws PropertyException {
535 throw new PropertyException(
545 private void checkString( String name, Object value ) throws PropertyException {
547 throw new PropertyException(
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/bind/helpers/
H A DAbstractMarshallerImpl.java30 import javax.xml.bind.PropertyException;
324 throws PropertyException {
358 throw new PropertyException(name, value);
368 throws PropertyException {
387 throw new PropertyException(name);
415 private void checkBoolean( String name, Object value ) throws PropertyException {
417 throw new PropertyException(
424 private void checkString( String name, Object value ) throws PropertyException {
426 throw new PropertyException(
H A DAbstractUnmarshallerImpl.java34 import javax.xml.bind.PropertyException;
340 * throws PropertyException since there are no required
345 throws PropertyException {
352 throw new PropertyException(name, value);
357 * throws PropertyException since there are no required
362 throws PropertyException {
369 throw new PropertyException(name);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DUnmarshallerImpl.java34 import javax.xml.bind.PropertyException;
425 public Object getProperty(String name) throws PropertyException {
433 public void setProperty(String name, Object value) throws PropertyException {

Completed in 75 milliseconds