Searched refs:detail (Results 1 - 25 of 70) sorted by relevance

123

/openjdk7/jdk/src/share/classes/javax/security/sasl/
H A DAuthenticationException.java59 * @param detail A possibly null string containing details of the exception.
63 public AuthenticationException (String detail) { argument
64 super(detail);
71 * @param detail A possibly null string containing details of the exception.
77 public AuthenticationException (String detail, Throwable ex) { argument
78 super(detail, ex);
H A DSaslException.java58 * @param detail A possibly null string containing details of the exception.
62 public SaslException (String detail) { argument
63 super(detail);
76 * @param detail A possibly null string containing details of the exception.
82 public SaslException (String detail, Throwable ex) { argument
83 super(detail);
/openjdk7/jdk/src/share/classes/java/io/
H A DWriteAbortedException.java32 * exception that terminated the write can be found in the detail
39 * accessed via the public {@link #detail} field is now known as the
58 public Exception detail; field in class:WriteAbortedException
69 detail = ex;
77 if (detail == null)
80 return super.getMessage() + "; " + detail.toString();
91 return detail;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DMutationException.java32 public MutationException(String detail) { argument
33 super(detail);
H A DUnknownOopException.java32 public UnknownOopException(String detail) { argument
33 super(detail);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/types/
H A DWrongTypeException.java32 public WrongTypeException(String detail) { argument
33 super(detail);
/openjdk7/jdk/src/share/classes/sun/net/ftp/
H A DFtpProtocolException.java40 * specified detail message. The reply code is set to unknow error.
42 * @param detail the detail message.
44 public FtpProtocolException(String detail) { argument
45 super(detail);
51 * specified response code and exception detail message
53 * @param detail the detail message.
56 public FtpProtocolException(String detail, FtpReplyCode code) { argument
57 super(detail);
[all...]
/openjdk7/jdk/src/share/classes/java/rmi/
H A DRemoteException.java38 * the public {@link #detail} field is now known as the <i>cause</i>, and
63 public Throwable detail; field in class:RemoteException
74 * detail message.
76 * @param s the detail message
84 * Constructs a <code>RemoteException</code> with the specified detail
85 * message and cause. This constructor sets the {@link #detail}
88 * @param s the detail message
94 detail = cause;
98 * Returns the detail message, including the message from the cause, if
101 * @return the detail messag
[all...]
/openjdk7/jdk/src/share/classes/java/rmi/activation/
H A DActivationException.java32 * the general purpose exception-chaining mechanism. The "detail exception"
34 * {@link #detail} field is now known as the <i>cause</i>, and may be
56 public Throwable detail; field in class:ActivationException
70 * detail message.
72 * @param s the detail message
81 * detail message and cause. This constructor sets the {@link #detail}
84 * @param s the detail message
90 detail = cause;
94 * Returns the detail messag
[all...]
/openjdk7/jdk/src/share/classes/java/rmi/server/
H A DServerCloneException.java35 * {@link #detail} field is now known as the <i>cause</i>, and may be
58 public Exception detail; field in class:ServerCloneException
65 * detail message.
67 * @param s the detail message.
76 * detail message and cause.
78 * @param s the detail message.
84 detail = cause;
88 * Returns the detail message, including the message from the cause, if
91 * @return the detail message
94 if (detail
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/
H A DNotInHeapException.java32 public NotInHeapException(String detail, long addr) { argument
33 super(detail, addr);
H A DUnalignedAddressException.java32 public UnalignedAddressException(String detail, long addr) { argument
33 super(detail, addr);
H A DUnmappedAddressException.java32 public UnmappedAddressException(String detail, long addr) { argument
33 super(detail, addr);
H A DNoSuchSymbolException.java40 public NoSuchSymbolException(String symbol, String detail) { argument
41 super(detail);
45 public NoSuchSymbolException(String symbol, String detail, Throwable cause) { argument
46 super(detail, cause);
H A DAddressException.java34 public AddressException(String detail, long addr) { argument
35 super(detail);
/openjdk7/jdk/test/java/rmi/testlibrary/
H A DTestFailedException.java29 * Provides a detail exception and a message.
32 public Throwable detail; field in class:TestFailedException
42 detail = ex;
46 if (detail == null)
51 detail.toString();
56 if (detail == null) {
61 detail.printStackTrace(ps);
73 if (detail == null) {
78 detail.printStackTrace(pw);
/openjdk7/jdk/src/share/classes/java/net/
H A DHttpRetryException.java47 * specified response code and exception detail message
49 * @param detail the detail message.
52 public HttpRetryException(String detail, int code) { argument
53 super(detail);
58 * Constructs a new <code>HttpRetryException</code> with detail message
61 * @param detail the detail message.
65 public HttpRetryException(String detail, int code, String location) { argument
66 super (detail);
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/basic/
H A DResolveListener.java33 public void resolveFailed(Type containingType, LazyType failedResolve, String detail); argument
40 public void resolveFailed(Sym containingSymbol, LazyType failedResolve, String detail); argument
44 public void resolveFailed(Sym containingSymbol, LazyBlockSym failedResolve, String detail); argument
H A DBasicDebugEvent.java36 private String detail; field in class:BasicDebugEvent
48 public String getUnknownEventDetail() { return detail; }
56 public void setUnknownEventDetail(String msg) { detail = msg; }
85 public static BasicDebugEvent newUnknownEvent(ThreadProxy thread, String detail) { argument
87 ev.setUnknownEventDetail(detail);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/model/
H A DCheckedExceptionImpl.java54 private final TypeReference detail; field in class:CheckedExceptionImpl
65 * @param detail
66 * detail or exception bean's TypeReference
70 public CheckedExceptionImpl(JavaMethodImpl jm, Class exceptionClass, TypeReference detail, ExceptionType exceptionType) { argument
71 this.detail = detail;
94 return (Class) detail.type;
98 return getOwner().getBridge(detail);
102 return detail;
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dswing_GTKEngine.c38 jint widget_type, jint state, jint shadow_type, jstring detail,
42 gtk2_paint_arrow(widget_type, state, shadow_type, getStrFor(env, detail),
55 jint widget_type, jint state, jint shadow_type, jstring detail,
60 gtk2_paint_box(widget_type, state, shadow_type, getStrFor(env, detail),
73 jint widget_type, jint state, jint shadow_type, jstring detail,
78 gtk2_paint_box_gap(widget_type, state, shadow_type, getStrFor(env, detail),
91 jint widget_type, jint synth_state, jstring detail,
95 gtk2_paint_check(widget_type, synth_state, getStrFor(env, detail),
108 jint widget_type, jint state, jstring detail,
112 gtk2_paint_expander(widget_type, state, getStrFor(env, detail),
36 Java_com_sun_java_swing_plaf_gtk_GTKEngine_native_1paint_1arrow( JNIEnv *env, jobject this, jint widget_type, jint state, jint shadow_type, jstring detail, jint x, jint y, jint w, jint h, jint arrow_type) argument
53 Java_com_sun_java_swing_plaf_gtk_GTKEngine_native_1paint_1box( JNIEnv *env, jobject this, jint widget_type, jint state, jint shadow_type, jstring detail, jint x, jint y, jint w, jint h, jint synth_state, jint dir) argument
71 Java_com_sun_java_swing_plaf_gtk_GTKEngine_native_1paint_1box_1gap( JNIEnv *env, jobject this, jint widget_type, jint state, jint shadow_type, jstring detail, jint x, jint y, jint w, jint h, jint gap_side, jint gap_x, jint gap_w) argument
89 Java_com_sun_java_swing_plaf_gtk_GTKEngine_native_1paint_1check( JNIEnv *env, jobject this, jint widget_type, jint synth_state, jstring detail, jint x, jint y, jint w, jint h) argument
106 Java_com_sun_java_swing_plaf_gtk_GTKEngine_native_1paint_1expander( JNIEnv *env, jobject this, jint widget_type, jint state, jstring detail, jint x, jint y, jint w, jint h, jint expander_style) argument
123 Java_com_sun_java_swing_plaf_gtk_GTKEngine_native_1paint_1extension( JNIEnv *env, jobject this, jint widget_type, jint state, jint shadow_type, jstring detail, jint x, jint y, jint w, jint h, jint placement) argument
140 Java_com_sun_java_swing_plaf_gtk_GTKEngine_native_1paint_1flat_1box( JNIEnv *env, jobject this, jint widget_type, jint state, jint shadow_type, jstring detail, jint x, jint y, jint w, jint h, jboolean has_focus) argument
157 Java_com_sun_java_swing_plaf_gtk_GTKEngine_native_1paint_1focus( JNIEnv *env, jobject this, jint widget_type, jint state, jstring detail, jint x, jint y, jint w, jint h) argument
174 Java_com_sun_java_swing_plaf_gtk_GTKEngine_native_1paint_1handle( JNIEnv *env, jobject this, jint widget_type, jint state, jint shadow_type, jstring detail, jint x, jint y, jint w, jint h, jint orientation) argument
191 Java_com_sun_java_swing_plaf_gtk_GTKEngine_native_1paint_1hline( JNIEnv *env, jobject this, jint widget_type, jint state, jstring detail, jint x, jint y, jint w, jint h) argument
208 Java_com_sun_java_swing_plaf_gtk_GTKEngine_native_1paint_1option( JNIEnv *env, jobject this, jint widget_type, jint synth_state, jstring detail, jint x, jint y, jint w, jint h) argument
225 Java_com_sun_java_swing_plaf_gtk_GTKEngine_native_1paint_1shadow( JNIEnv *env, jobject this, jint widget_type, jint state, jint shadow_type, jstring detail, jint x, jint y, jint w, jint h, jint synth_state, jint dir) argument
243 Java_com_sun_java_swing_plaf_gtk_GTKEngine_native_1paint_1slider( JNIEnv *env, jobject this, jint widget_type, jint state, jint shadow_type, jstring detail, jint x, jint y, jint w, jint h, jint orientation) argument
260 Java_com_sun_java_swing_plaf_gtk_GTKEngine_native_1paint_1vline( JNIEnv *env, jobject this, jint widget_type, jint state, jstring detail, jint x, jint y, jint w, jint h) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/fault/
H A DSOAP11Fault.java52 * &lt;detail>
56 * &lt;/detail>
72 "detail"
86 private DetailType detail; field in class:SOAP11Fault
92 * This constructor takes soap fault detail among other things. The detail could represent {@link javax.xml.soap.Detail}
105 if(detailObject.getNamespaceURI().equals("") && detailObject.getLocalName().equals("detail")){
106 detail = new DetailType();
108 detail.getDetails().add(detailEntry);
111 detail
163 setDetail(DetailType detail) argument
[all...]
H A DSOAP12Fault.java83 "detail"
102 private DetailType detail; field in class:SOAP12Fault
107 SOAP12Fault(CodeType code, ReasonType reason, String node, String role, DetailType detail) { argument
112 this.detail = detail;
122 detail = new DetailType();
124 detail.getDetails().add(detailEntry);
127 detail = new DetailType(detailObject);
144 detail = new DetailType();
148 detail
179 setDetail(DetailType detail) argument
[all...]
H A DSOAPFaultBuilder.java104 Node detail = null;
105 if(dt != null) detail = dt.getDetail(0);
107 //return ProtocolException if the detail is not present or there is no checked exception
108 if(detail == null || exceptions == null){
109 // No soap detail, doesnt look like its a checked exception
114 //check if the detail is a checked exception, if not throw a ProtocolException
115 QName detailName = new QName(detail.getNamespaceURI(), detail.getLocalName());
118 //No Checked exception for the received detail QName, throw a SOAPFault exception
130 Exception exception = (Exception) constructor.newInstance(getFaultString(), getJAXBObject(detail, c
228 createSOAPFaultMessage(SOAPVersion soapVersion, String faultString, QName faultCode, Element detail) argument
356 createSOAP11Fault(SOAPVersion soapVersion, Throwable e, Object detail, CheckedExceptionImpl ce, QName faultCode) argument
412 getFirstDetailEntryName(@ullable Detail detail) argument
427 createSOAP12Fault(SOAPVersion soapVersion, Throwable e, Object detail, CheckedExceptionImpl ce, QName faultCode) argument
[all...]
/openjdk7/jdk/test/java/rmi/server/RMIClassLoader/useCodebaseOnly/
H A DUseCodebaseOnly.java130 (e.detail instanceof UnmarshalException) &&
131 (((RemoteException) e.detail).detail instanceof
133 (((RemoteException) e.detail).detail.getMessage().equals(

Completed in 6380 milliseconds

123