Searched defs:detail (Results 1 - 25 of 41) sorted by relevance

12

/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 DAddressException.java34 public AddressException(String detail, long addr) { argument
35 super(detail);
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);
/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/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/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/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/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/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/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/jdk/src/share/classes/javax/naming/
H A DLinkException.java117 * detail about this exception.
182 * @return The possibly null detail string explaining more about the problem
185 * link detail message for this exception.
196 * @param msg The possibly null detail string explaining more about the problem
197 * with resolving a link. If null, it means no detail will be recorded.
282 * If 'detail' is true, the string also contains information on
288 * @param detail If true, add information about the link resolved
292 public String toString(boolean detail) { argument
293 if (!detail || this.linkResolvedObj == null)
H A DNamingException.java122 * additional detail about this exception.
184 * @return The possibly null detail string explaining more
186 * detail message for this exception.
412 * Generates the string representation in more detail.
419 * @param detail If true, include details about the resolved object
423 public String toString(boolean detail) { argument
424 if (!detail || resolvedObj == null) {
/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...]
/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/share/classes/com/sun/jndi/toolkit/ctx/
H A DContinuation.java431 public String toString(boolean detail) { argument
432 if (!detail || this.resolvedObj == null)

Completed in 3938 milliseconds

12