- Sort Score
- Result 10 results
- Languages All
Results 331 - 340 of 1,303 for causes (0.04 sec)
-
src/main/java/org/codelibs/core/exception/ClIllegalArgumentException.java
* メッセージコード * @param args * 引数の配列 * @param cause * 原因となった例外 */ public ClIllegalArgumentException(final String argName, final String messageCode, final Object[] args, final Throwable cause) { super(MessageFormatter.getMessage(messageCode, args), cause); this.argName = argName; this.messageCode = messageCode; this.args = args;
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.7K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/ArtifactDoesNotExistException.java
public ArtifactDoesNotExistException(final String message) { super(message); } public ArtifactDoesNotExistException(final String message, final 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) -
impl/maven-core/src/main/java/org/apache/maven/configuration/BeanConfigurationException.java
public BeanConfigurationException(String message) { super(message); } public BeanConfigurationException(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.1K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/transformation/TransformationFailedException.java
* implementation. */ public class TransformationFailedException extends RuntimeException { public TransformationFailedException(Throwable cause) { super(cause); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.1K bytes - Viewed (0) -
okhttp-dnsoverhttps/src/test/java/okhttp3/dnsoverhttps/DnsOverHttpsTest.kt
try { dns.lookup("google.com") fail<Any>() } catch (ioe: IOException) { assertThat(ioe.message).isEqualTo("google.com") val cause = ioe.cause!! assertThat(cause).isInstanceOf<IOException>() assertThat(cause).hasMessage("response size exceeds limit (65536 bytes): 65537 bytes") } } @Test fun failOnBadResponse() { server.enqueue(dnsResponse("00"))
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Wed Apr 10 19:46:48 UTC 2024 - 11K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/client/SearchEngineClientException.java
public class SearchEngineClientException extends FessSystemException { private static final long serialVersionUID = 1L; public SearchEngineClientException(final String message, final Throwable cause) { super(message, cause); } public SearchEngineClientException(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) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/io/ModelParseException.java
* @param columnNumber The one-based index of the column containing the error or {@code -1} if unknown. * @param cause The nested cause of this error, may be {@code null}. */ public ModelParseException(String message, int lineNumber, int columnNumber, Throwable cause) { super(message); initCause(cause); this.lineNumber = lineNumber; this.columnNumber = columnNumber; } /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.1K bytes - Viewed (0) -
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/io/SettingsParseException.java
* @param columnNumber The one-based index of the column containing the error or {@code -1} if unknown. * @param cause The nested cause of this error, may be {@code null}. */ public SettingsParseException(String message, int lineNumber, int columnNumber, Throwable cause) { super(message); initCause(cause); this.lineNumber = lineNumber; this.columnNumber = columnNumber; } /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/BeanFieldSetAccessibleFailureException.java
protected final transient Field targetField; public BeanFieldSetAccessibleFailureException(final Class<?> componentClass, final Field targetField, final Throwable cause) { super("ECL0115", new Object[] { targetField }, cause); this.targetClass = componentClass; this.targetField = targetField; } public Class<?> getTargetClass() { return targetClass; }
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Fri Mar 08 13:23:29 UTC 2024 - 1.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/BeanMethodSetAccessibleFailureException.java
protected final transient Method targetMethod; public BeanMethodSetAccessibleFailureException(final Class<?> componentClass, final Method targetMethod, final Throwable cause) { super("ECL0116", new Object[] { targetMethod }, cause); this.targetClass = componentClass; this.targetMethod = targetMethod; } public Class<?> getTargetClass() { return targetClass; }
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Fri Mar 08 13:23:29 UTC 2024 - 1.3K bytes - Viewed (0)