- Sort Score
- Result 10 results
- Languages All
Results 111 - 120 of 450 for Throwables (0.08 sec)
-
src/main/java/org/codelibs/core/log/JulLoggerAdapter.java
} @Override public void fatal(final String message) { logger.logp(Level.SEVERE, sourceClass, null, message); } @Override public void fatal(final String message, final Throwable t) { logger.logp(Level.SEVERE, sourceClass, null, message, t); } @Override public boolean isErrorEnabled() { return logger.isLoggable(Level.SEVERE); } @Override
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/exception/SuggestSettingsException.java
public SuggestSettingsException(final String msg) { super(msg); } public SuggestSettingsException(final Throwable cause) { super(cause); } public SuggestSettingsException(final String msg, final Throwable cause) { super(msg, cause); }
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:54 UTC 2024 - 1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/DataStoreException.java
private static final long serialVersionUID = 1L; public DataStoreException(final String message, final Throwable cause) { super(message, cause); } public DataStoreException(final String message) { super(message); } public DataStoreException(final Throwable cause) { super(cause); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/JobProcessingException.java
public class JobProcessingException extends FessSystemException { private static final long serialVersionUID = 1L; public JobProcessingException(final Throwable e) { super(e); } public JobProcessingException(final String message, final Throwable e) { super(message, e); } public JobProcessingException(final String message) { super(message); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/exception/MimeTypeException.java
private static final long serialVersionUID = 1L; public MimeTypeException(final String message, final Throwable cause) { super(message, cause); } public MimeTypeException(final String message) { super(message); } public MimeTypeException(final Throwable cause) { super(cause); }
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 1.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/DcerpcException.java
} private int error; private Throwable rootCause; DcerpcException(int error) { super(getMessageByDcerpcError(error)); this.error = error; } public DcerpcException(String msg) { super(msg); } public DcerpcException(String msg, Throwable rootCause) { super(msg); this.rootCause = rootCause; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 2.4K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/AbstractService.java
* has failed. */ @CheckForNull final Throwable failure; StateSnapshot(State internalState) { this(internalState, false, null); } StateSnapshot( State internalState, boolean shutdownWhenStartupFinishes, @CheckForNull Throwable failure) { checkArgument( !shutdownWhenStartupFinishes || internalState == STARTING,
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri May 12 18:32:03 UTC 2023 - 20.4K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/deployer/ArtifactDeploymentException.java
public ArtifactDeploymentException(String message) { super(message); } public ArtifactDeploymentException(Throwable cause) { super(cause); } public ArtifactDeploymentException(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.2K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/installer/ArtifactInstallationException.java
public ArtifactInstallationException(String message) { super(message); } public ArtifactInstallationException(Throwable cause) { super(cause); } public ArtifactInstallationException(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.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/ContainerNotAvailableException.java
} public ContainerNotAvailableException(final String componentName, final Throwable cause) { super(componentName + " is not available.", cause); this.componentName = componentName; } public ContainerNotAvailableException(final Throwable cause) { super("Container is not avaiable."); componentName = "container"; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 1.4K bytes - Viewed (0)