- Sort Score
- Result 10 results
- Languages All
Results 241 - 250 of 1,103 for causes (0.05 sec)
-
LICENSE
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Mon Nov 29 17:31:56 UTC 2021 - 13.3K bytes - Viewed (0) -
api/maven-api-spi/src/main/java/org/apache/maven/api/spi/ModelParserException.java
this(message, -1, -1, cause); } public ModelParserException(String message, int lineNumber, int columnNumber, Throwable cause) { super(message, cause); this.lineNumber = lineNumber; this.columnNumber = columnNumber; } public ModelParserException(Throwable cause) { this(null, cause); }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Sep 22 07:25:10 UTC 2023 - 1.9K bytes - Viewed (0) -
src/test/java/jcifs/util/transport/RequestTimeoutExceptionTest.java
assertEquals(cause, exception.getCause(), "Cause should match the provided throwable"); } @Test void testMessageAndCauseConstructor() { // Test the constructor with both message and cause arguments String message = "Test message with cause"; Throwable cause = new IllegalArgumentException("Invalid argument"); RequestTimeoutException exception = new RequestTimeoutException(message, cause);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 2.4K bytes - Viewed (0) -
src/test/java/jcifs/util/transport/ConnectionTimeoutExceptionTest.java
assertNull(exception.getCause(), "Cause should be null for string constructor"); } @Test void testThrowableConstructor() { // Test the constructor with a cause Throwable cause = new RuntimeException("Root cause of timeout"); ConnectionTimeoutException exception = new ConnectionTimeoutException(cause); assertEquals("java.lang.RuntimeException: Root cause of timeout", exception.getMessage(),
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/ParserConfigurationRuntimeException.java
/** * Creates a {@link ParserConfigurationRuntimeException}. * * @param cause the underlying exception */ public ParserConfigurationRuntimeException(final ParserConfigurationException cause) { super("ECL0053", asArray(cause), cause); }
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 1.3K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/UncheckedTimeoutException.java
public UncheckedTimeoutException(@Nullable String message) { super(message); } public UncheckedTimeoutException(@Nullable Throwable cause) { super(cause); } public UncheckedTimeoutException(@Nullable String message, @Nullable Throwable cause) { super(message, cause); } private static final long serialVersionUID = 0;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Feb 13 17:34:21 UTC 2025 - 1.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/PluginExceptionTest.java
} public void test_toStringMethodWithCause() { // Test toString method behavior with cause String message = "Plugin error with cause"; Throwable cause = new RuntimeException("Root cause"); PluginException exception = new PluginException(message, cause); String toStringResult = exception.toString(); assertNotNull(toStringResult);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.9K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataResolutionException.java
super(message); // TODO Auto-generated constructor stub } public MetadataResolutionException(Throwable cause) { super(cause); // TODO Auto-generated constructor stub } public MetadataResolutionException(String message, Throwable cause) { super(message, cause); // TODO Auto-generated constructor stub }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.5K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/SuperPomProviderException.java
public SuperPomProviderException(String message) { super(message); } public SuperPomProviderException(String message, Throwable cause) { super(message, cause); } public SuperPomProviderException(Throwable cause) { super(cause); }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Oct 02 21:26:05 UTC 2024 - 1.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/InvalidKeyRuntimeException.java
/** * Creates a {@link InvalidKeyRuntimeException}. * * @param cause * The cause of the exception */ public InvalidKeyRuntimeException(final InvalidKeyException cause) { super("ECL0068", asArray(cause), cause); }
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 1.3K bytes - Viewed (0)