Searched refs:reason (Results 1 - 25 of 260) sorted by relevance

1234567891011

/openjdk10/jdk/src/java.desktop/share/classes/java/awt/
H A DFontFormatException.java44 * Report a FontFormatException for the reason specified.
45 * @param reason a {@code String} message indicating why
48 public FontFormatException(String reason) { argument
49 super (reason);
/openjdk10/jdk/src/java.desktop/share/classes/sun/font/
H A DFontScalerException.java34 public FontScalerException(String reason) { argument
35 super (reason);
/openjdk10/jdk/src/java.base/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 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 + ")"));
/openjdk10/jdk/src/java.desktop/share/classes/java/awt/desktop/
H A DUserSessionEvent.java30 * Some systems may provide a reason of a user session change.
41 private final Reason reason; field in class:UserSessionEvent
48 * The system does not provide a reason for a session change.
71 * @param reason of session change
73 public UserSessionEvent(Reason reason) { argument
74 this.reason = reason;
78 * Gets a reason of the user session change.
80 * @return reason a reason
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/javax/print/event/
H A DPrintJobEvent.java42 * The reason of this event.
44 private int reason; field in class:PrintJobEvent
94 * @param reason an int specifying the reason
97 public PrintJobEvent( DocPrintJob source, int reason) { argument
100 this.reason = reason;
104 * Gets the reason for this event.
106 * @return reason int
109 return reason;
[all...]
/openjdk10/jdk/src/java.sql/share/classes/java/sql/
H A DSQLFeatureNotSupportedException.java47 * The <code>reason</code>, <code>SQLState</code> are initialized
62 * with a given <code>reason</code>. The <code>SQLState</code>
70 * @param reason a description of the exception
73 public SQLFeatureNotSupportedException(String reason) { argument
74 super(reason);
79 * with a given <code>reason</code> and <code>SQLState</code>.
86 * @param reason a description of the exception
90 public SQLFeatureNotSupportedException(String reason, String SQLState) { argument
91 super(reason,SQLState);
96 * with a given <code>reason</cod
108 SQLFeatureNotSupportedException(String reason, String SQLState, int vendorCode) argument
141 SQLFeatureNotSupportedException(String reason, Throwable cause) argument
157 SQLFeatureNotSupportedException(String reason, String SQLState, Throwable cause) argument
174 SQLFeatureNotSupportedException(String reason, String SQLState, int vendorCode, Throwable cause) argument
[all...]
H A DSQLNonTransientConnectionException.java42 * The <code>reason</code>, <code>SQLState</code> are initialized
57 * with a given <code>reason</code>. The <code>SQLState</code>
65 * @param reason a description of the exception
68 public SQLNonTransientConnectionException(String reason) { argument
69 super(reason);
74 * with a given <code>reason</code> and <code>SQLState</code>.
81 * @param reason a description of the exception
85 public SQLNonTransientConnectionException(String reason, String SQLState) { argument
86 super(reason,SQLState);
91 * with a given <code>reason</cod
103 SQLNonTransientConnectionException(String reason, String SQLState, int vendorCode) argument
136 SQLNonTransientConnectionException(String reason, Throwable cause) argument
152 SQLNonTransientConnectionException(String reason, String SQLState, Throwable cause) argument
169 SQLNonTransientConnectionException(String reason, String SQLState, int vendorCode, Throwable cause) argument
[all...]
H A DSQLIntegrityConstraintViolationException.java42 * The <code>reason</code>, <code>SQLState</code> are initialized
57 * with a given <code>reason</code>. The <code>SQLState</code>
65 * @param reason a description of the exception
68 public SQLIntegrityConstraintViolationException(String reason) { argument
69 super(reason);
74 * object with a given <code>reason</code> and <code>SQLState</code>.
81 * @param reason a description of the exception
85 public SQLIntegrityConstraintViolationException(String reason, String SQLState) { argument
86 super(reason,SQLState);
91 * with a given <code>reason</cod
103 SQLIntegrityConstraintViolationException(String reason, String SQLState, int vendorCode) argument
136 SQLIntegrityConstraintViolationException(String reason, Throwable cause) argument
152 SQLIntegrityConstraintViolationException(String reason, String SQLState, Throwable cause) argument
169 SQLIntegrityConstraintViolationException(String reason, String SQLState, int vendorCode, Throwable cause) argument
[all...]
H A DSQLInvalidAuthorizationSpecException.java42 * The <code>reason</code>, <code>SQLState</code> are initialized
57 * with a given <code>reason</code>. The <code>SQLState</code>
65 * @param reason a description of the exception
68 public SQLInvalidAuthorizationSpecException(String reason) { argument
69 super(reason);
74 * with a given <code>reason</code> and <code>SQLState</code>.
81 * @param reason a description of the exception
85 public SQLInvalidAuthorizationSpecException(String reason, String SQLState) { argument
86 super(reason,SQLState);
91 * with a given <code>reason</cod
103 SQLInvalidAuthorizationSpecException(String reason, String SQLState, int vendorCode) argument
136 SQLInvalidAuthorizationSpecException(String reason, Throwable cause) argument
152 SQLInvalidAuthorizationSpecException(String reason, String SQLState, Throwable cause) argument
169 SQLInvalidAuthorizationSpecException(String reason, String SQLState, int vendorCode, Throwable cause) argument
[all...]
H A DSQLDataException.java42 * The <code>reason</code>, <code>SQLState</code> are initialized
57 * <code>reason</code>.
65 * @param reason a description of the exception
68 public SQLDataException(String reason) { argument
69 super(reason);
74 * <code>reason</code> and <code>SQLState</code>. The
81 * @param reason a description of the exception
85 public SQLDataException(String reason, String SQLState) { argument
86 super(reason, SQLState);
91 * <code>reason</cod
103 SQLDataException(String reason, String SQLState, int vendorCode) argument
135 SQLDataException(String reason, Throwable cause) argument
150 SQLDataException(String reason, String SQLState, Throwable cause) argument
166 SQLDataException(String reason, String SQLState, int vendorCode, Throwable cause) argument
[all...]
H A DSQLNonTransientException.java39 * The <code>reason</code>, <code>SQLState</code> are initialized
54 * with a given <code>reason</code>. The <code>SQLState</code>
62 * @param reason a description of the exception
65 public SQLNonTransientException(String reason) { argument
66 super(reason);
71 * with a given <code>reason</code> and <code>SQLState</code>.
78 * @param reason a description of the exception
82 public SQLNonTransientException(String reason, String SQLState) { argument
83 super(reason,SQLState);
88 * with a given <code>reason</cod
100 SQLNonTransientException(String reason, String SQLState, int vendorCode) argument
133 SQLNonTransientException(String reason, Throwable cause) argument
150 SQLNonTransientException(String reason, String SQLState, Throwable cause) argument
167 SQLNonTransientException(String reason, String SQLState, int vendorCode, Throwable cause) argument
[all...]
H A DSQLTransactionRollbackException.java41 * The <code>reason</code>, <code>SQLState</code> are initialized
56 * with a given <code>reason</code>. The <code>SQLState</code>
64 * @param reason a description of the exception
67 public SQLTransactionRollbackException(String reason) { argument
68 super(reason);
73 * with a given <code>reason</code> and <code>SQLState</code>.
80 * @param reason a description of the exception
84 public SQLTransactionRollbackException(String reason, String SQLState) { argument
85 super(reason, SQLState);
90 * with a given <code>reason</cod
102 SQLTransactionRollbackException(String reason, String SQLState, int vendorCode) argument
135 SQLTransactionRollbackException(String reason, Throwable cause) argument
151 SQLTransactionRollbackException(String reason, String SQLState, Throwable cause) argument
168 SQLTransactionRollbackException(String reason, String SQLState, int vendorCode, Throwable cause) argument
[all...]
H A DSQLTransientConnectionException.java42 * The <code>reason</code>, <code>SQLState</code> are initialized
57 * with a given <code>reason</code>. The <code>SQLState</code>
65 * @param reason a description of the exception
68 public SQLTransientConnectionException(String reason) { argument
69 super(reason);
74 * with a given <code>reason</code> and <code>SQLState</code>.
81 * @param reason a description of the exception
85 public SQLTransientConnectionException(String reason, String SQLState) { argument
86 super(reason,SQLState);
91 * with a given <code>reason</cod
103 SQLTransientConnectionException(String reason, String SQLState, int vendorCode) argument
136 SQLTransientConnectionException(String reason, Throwable cause) argument
152 SQLTransientConnectionException(String reason, String SQLState, Throwable cause) argument
169 SQLTransientConnectionException(String reason, String SQLState, int vendorCode, Throwable cause) argument
[all...]
H A DSQLRecoverableException.java42 * The <code>reason</code>, <code>SQLState</code> are initialized
57 * with a given <code>reason</code>. The <code>SQLState</code>
65 * @param reason a description of the exception
68 public SQLRecoverableException(String reason) { argument
69 super(reason);
74 * with a given <code>reason</code> and <code>SQLState</code>.
81 * @param reason a description of the exception
85 public SQLRecoverableException(String reason, String SQLState) { argument
86 super(reason, SQLState);
91 * with a given <code>reason</cod
103 SQLRecoverableException(String reason, String SQLState, int vendorCode) argument
136 SQLRecoverableException(String reason, Throwable cause) argument
152 SQLRecoverableException(String reason, String SQLState, Throwable cause) argument
169 SQLRecoverableException(String reason, String SQLState, int vendorCode, Throwable cause) argument
[all...]
H A DSQLSyntaxErrorException.java41 * The <code>reason</code>, <code>SQLState</code> are initialized
56 * with a given <code>reason</code>. The <code>SQLState</code>
64 * @param reason a description of the exception
67 public SQLSyntaxErrorException(String reason) { argument
68 super(reason);
73 * with a given <code>reason</code> and <code>SQLState</code>.
80 * @param reason a description of the exception
84 public SQLSyntaxErrorException(String reason, String SQLState) { argument
85 super(reason, SQLState);
90 * with a given <code>reason</cod
102 SQLSyntaxErrorException(String reason, String SQLState, int vendorCode) argument
135 SQLSyntaxErrorException(String reason, Throwable cause) argument
151 SQLSyntaxErrorException(String reason, String SQLState, Throwable cause) argument
168 SQLSyntaxErrorException(String reason, String SQLState, int vendorCode, Throwable cause) argument
[all...]
H A DSQLTimeoutException.java41 * The <code>reason</code>, <code>SQLState</code> are initialized
56 * with a given <code>reason</code>. The <code>SQLState</code>
64 * @param reason a description of the exception
67 public SQLTimeoutException(String reason) { argument
68 super(reason);
73 * with a given <code>reason</code> and <code>SQLState</code>.
80 * @param reason a description of the exception
84 public SQLTimeoutException(String reason, String SQLState) { argument
85 super(reason, SQLState);
90 * with a given <code>reason</cod
102 SQLTimeoutException(String reason, String SQLState, int vendorCode) argument
135 SQLTimeoutException(String reason, Throwable cause) argument
151 SQLTimeoutException(String reason, String SQLState, Throwable cause) argument
168 SQLTimeoutException(String reason, String SQLState, int vendorCode, Throwable cause) argument
[all...]
H A DSQLTransientException.java39 * The <code>reason</code>, <code>SQLState</code> are initialized
54 * with a given <code>reason</code>. The <code>SQLState</code>
62 * @param reason a description of the exception
65 public SQLTransientException(String reason) { argument
66 super(reason);
71 * with a given <code>reason</code> and <code>SQLState</code>.
78 * @param reason a description of the exception
82 public SQLTransientException(String reason, String SQLState) { argument
83 super(reason,SQLState);
88 * with a given <code>reason</cod
100 SQLTransientException(String reason, String SQLState, int vendorCode) argument
133 SQLTransientException(String reason, Throwable cause) argument
149 SQLTransientException(String reason, String SQLState, Throwable cause) argument
166 SQLTransientException(String reason, String SQLState, int vendorCode, Throwable cause) argument
[all...]
/openjdk10/corba/src/java.corba/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 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);
/openjdk10/corba/src/java.corba/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);
/openjdk10/corba/src/java.corba/share/classes/org/omg/CORBA/DynAnyPackage/
H A DTypeMismatch.java46 * @param reason a <code>String</code> giving more information
49 public TypeMismatch(String reason) { argument
50 super(reason);
/openjdk10/corba/src/java.corba/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);

Completed in 139 milliseconds

1234567891011