Searched defs:reason (Results 1 - 25 of 121) sorted by relevance

12345

/openjdk7/jdk/src/share/classes/sun/font/
H A DFontScalerException.java33 public FontScalerException(String reason) { argument
34 super (reason);
/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A DBounds.java49 * @param reason the detail message.
51 public Bounds(String reason) { argument
52 super(reason);
H A DUserException.java51 * @param reason a <code>String</code> object giving the reason for this
54 protected UserException(String reason) { argument
55 super(reason);
H A DWrongTransaction.java51 * @param reason The detail message explaining what caused this exception to be thrown.
53 public WrongTransaction(String reason) { argument
54 super(WrongTransactionHelper.id() + " " + reason);
H A DPolicyError.java30 * exception may include one of the following policy error reason codes
38 * The reason for the <code>PolicyError</code> exception being thrown.
41 public short reason; field in class:PolicyError
45 * with no reason code and an empty reason detail message.
53 * initialized with the given reason code and an empty reason detail message.
54 * @param __reason the reason code.
58 reason = __reason;
63 * initialized with the given reason detai
[all...]
H A DSystemException.java69 * @param reason the String containing a detail message
73 protected SystemException(String reason, int minor, CompletionStatus completed) { argument
74 super(reason);
/openjdk7/jdk/src/share/classes/java/io/
H A DInvalidObjectException.java30 * tests. The argument should provide the reason for the failure.
44 * @param reason Detailed message explaining the reason for the failure.
48 public InvalidObjectException(String reason) { argument
49 super(reason);
H A DNotActiveException.java39 * Constructor to create a new NotActiveException with the reason given.
41 * @param reason a String describing the reason for the exception.
43 public NotActiveException(String reason) { argument
44 super(reason);
48 * Constructor to create a new NotActiveException without a reason.
H A DStreamCorruptedException.java40 * Create a StreamCorruptedException and list a reason why thrown.
42 * @param reason String describing the reason for the exception.
44 public StreamCorruptedException(String reason) { argument
45 super(reason);
49 * Create a StreamCorruptedException and list no reason why thrown.
H A DFileNotFoundException.java36 * constructors if the file does exist but for some reason is inaccessible, for
69 * consisting of the given pathname string followed by the given reason
70 * string. If the <code>reason</code> argument is <code>null</code> then
76 private FileNotFoundException(String path, String reason) { argument
77 super(path + ((reason == null)
79 : " (" + reason + ")"));
/openjdk7/jdk/src/share/classes/java/awt/
H A DFontFormatException.java44 * Report a FontFormatException for the reason specified.
45 * @param reason a <code>String</code> message indicating why
48 public FontFormatException(String reason) { argument
49 super (reason);
/openjdk7/hotspot/test/runtime/NMT/
H A DSummarySanityCheck.java117 private static void throwTestException(String reason) throws Exception { argument
118 throw new Exception(reason + " . Stdout is :\n" + jcmdout);
/openjdk7/corba/src/share/classes/org/omg/CORBA/DynAnyPackage/
H A DInvalid.java45 * @param reason a <code>String</code> giving more information
48 public Invalid(String reason) { argument
49 super(reason);
H A DInvalidSeq.java46 * @param reason a <code>String</code> giving more information
49 public InvalidSeq(String reason) { argument
50 super(reason);
H A DInvalidValue.java47 * @param reason a <code>String</code> giving more information
50 public InvalidValue(String reason) { argument
51 super(reason);
H A DTypeMismatch.java46 * @param reason a <code>String</code> giving more information
49 public TypeMismatch(String reason) { argument
50 super(reason);
/openjdk7/corba/src/share/classes/org/omg/CORBA/ORBPackage/
H A DInconsistentTypeCode.java38 * with no reason message.
46 * with the specified reason message.
47 * @param reason The String containing a reason message
49 public InconsistentTypeCode(String reason) { argument
50 super(reason);
H A DInvalidName.java39 * Constructs an <code>InvalidName</code> exception with no reason message.
47 * reason message.
48 * @param reason the String containing a reason message
50 public InvalidName(String reason) { argument
51 super(reason);
/openjdk7/corba/src/share/classes/org/omg/CORBA/TypeCodePackage/
H A DBadKind.java41 * Constructs a <code>BadKind</code> exception with no reason message.
49 * reason message.
50 * @param reason the String containing a reason message
52 public BadKind(String reason) { argument
53 super(reason);
H A DBounds.java41 * Constructs a <code>Bounds</code> exception with no reason message.
49 * reason message.
50 * @param reason the String containing a reason message
52 public Bounds(String reason) { argument
53 super(reason);
/openjdk7/jdk/src/share/classes/javax/net/ssl/
H A DSSLHandshakeException.java46 * @param reason describes the problem.
48 public SSLHandshakeException(String reason) argument
50 super(reason);
H A DSSLKeyException.java45 * @param reason describes the problem.
47 public SSLKeyException(String reason) argument
49 super(reason);
H A DSSLPeerUnverifiedException.java51 * @param reason describes the problem.
53 public SSLPeerUnverifiedException(String reason) argument
55 super(reason);
H A DSSLProtocolException.java45 * @param reason describes the problem.
47 public SSLProtocolException(String reason) argument
49 super(reason);
/openjdk7/jdk/src/share/classes/sun/net/www/
H A DApplicationLaunchException.java38 public ApplicationLaunchException(String reason) { argument
39 super(reason);

Completed in 110 milliseconds

12345