- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 636 for Cause (0.03 sec)
-
src/main/java/org/codelibs/fess/exception/ScheduledJobException.java
private static final long serialVersionUID = 1L; /** * @param message Exception message. * @param cause Root cause for this exception. */ public ScheduledJobException(final String message, final Throwable cause) { super(message, cause); } /** * @param message Exception message. */ public ScheduledJobException(final String message) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.1K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/AbstractService.java
*/ protected final void notifyFailed(Throwable cause) { checkNotNull(cause); monitor.enter(); try { State previous = state(); switch (previous) { case NEW: case TERMINATED: throw new IllegalStateException("Failed while in state:" + previous, cause); case RUNNING: case STARTING: case STOPPING:
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri May 12 18:32:03 UTC 2023 - 20.7K bytes - Viewed (0) -
internal/s3select/json/errors.go
// along with this program. If not, see <http://www.gnu.org/licenses/>. package json type s3Error struct { code string message string statusCode int cause error } func (err *s3Error) Cause() error { return err.cause } func (err *s3Error) ErrorCode() string { return err.code } func (err *s3Error) ErrorMessage() string { return err.message }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Jun 01 21:59:40 UTC 2021 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/InvalidKeyRuntimeException.java
/** * {@link InvalidKeyRuntimeException}を作成します。 * * @param cause * 原因となった例外 */ public InvalidKeyRuntimeException(final InvalidKeyException cause) { super("ECL0068", asArray(cause), cause); }
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.3K bytes - Viewed (0) -
src/main/java/jcifs/pac/PACDecodingException.java
public PACDecodingException ( String message ) { this(message, null); } public PACDecodingException ( Throwable cause ) { this(null, cause); } public PACDecodingException ( String message, Throwable cause ) { super(message, cause); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.3K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataGraphTransformationException.java
super(message); } public MetadataGraphTransformationException(Throwable cause) { super(cause); } public MetadataGraphTransformationException(String message, Throwable cause) { super(message, cause); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.4K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/MavenException.java
public MavenException() {} public MavenException(String message) { super(message); } public MavenException(String message, Throwable cause) { super(message, cause); } public MavenException(Throwable cause) { super(cause); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Oct 02 21:26:05 UTC 2024 - 1.4K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/FuturesGetChecked.java
Throwable cause, Class<X> exceptionClass) throws X { if (cause instanceof Error) { throw new ExecutionError((Error) cause); } if (cause instanceof RuntimeException) { throw new UncheckedExecutionException(cause); } throw newWithCause(exceptionClass, cause); } /*
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Feb 22 17:40:56 UTC 2024 - 11.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/ClSQLException.java
* * @param messageCode * メッセージコード * @param args * 引数の並び * @param cause * 原因となった例外 */ public ClSQLException(final String messageCode, final Object[] args, final Throwable cause) { this(messageCode, args, null, 0, cause, null); } /** * {@link ClSQLException}を作成します。 * * @param messageCode * メッセージコード
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 5.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/FessSystemException.java
public FessSystemException(final String message, final Throwable cause) { super(message, cause); } public FessSystemException(final String message) { super(message); } public FessSystemException(final Throwable cause) { super(cause); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.2K bytes - Viewed (0)