[BAEL-13322] - Removed noexception module : Code already present in libraries module
This commit is contained in:
parent
0b9a5b3d04
commit
27699842f6
|
@ -1,27 +0,0 @@
|
||||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
||||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
|
||||||
<groupId>com.baeldung</groupId>
|
|
||||||
<artifactId>noexception</artifactId>
|
|
||||||
<version>1.0</version>
|
|
||||||
<name>noexception</name>
|
|
||||||
|
|
||||||
<parent>
|
|
||||||
<groupId>com.baeldung</groupId>
|
|
||||||
<artifactId>parent-modules</artifactId>
|
|
||||||
<version>1.0.0-SNAPSHOT</version>
|
|
||||||
</parent>
|
|
||||||
|
|
||||||
<dependencies>
|
|
||||||
<dependency>
|
|
||||||
<groupId>com.machinezoo.noexception</groupId>
|
|
||||||
<artifactId>noexception</artifactId>
|
|
||||||
<version>${noexception.version}</version>
|
|
||||||
</dependency>
|
|
||||||
</dependencies>
|
|
||||||
|
|
||||||
<properties>
|
|
||||||
<noexception.version>1.1.0</noexception.version>
|
|
||||||
</properties>
|
|
||||||
|
|
||||||
</project>
|
|
|
@ -1,24 +0,0 @@
|
||||||
package com.baeldung.noexception;
|
|
||||||
|
|
||||||
import com.machinezoo.noexception.ExceptionHandler;
|
|
||||||
import org.slf4j.Logger;
|
|
||||||
import org.slf4j.LoggerFactory;
|
|
||||||
|
|
||||||
public class CustomExceptionHandler extends ExceptionHandler {
|
|
||||||
|
|
||||||
private Logger logger = LoggerFactory.getLogger(CustomExceptionHandler.class);
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean handle(Throwable throwable) {
|
|
||||||
|
|
||||||
if (throwable.getClass()
|
|
||||||
.isAssignableFrom(RuntimeException.class)
|
|
||||||
|| throwable.getClass()
|
|
||||||
.isAssignableFrom(Error.class)) {
|
|
||||||
return false;
|
|
||||||
} else {
|
|
||||||
logger.error("Caught Exception ", throwable);
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,13 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<configuration>
|
|
||||||
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
|
|
||||||
<encoder>
|
|
||||||
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n
|
|
||||||
</pattern>
|
|
||||||
</encoder>
|
|
||||||
</appender>
|
|
||||||
|
|
||||||
<root level="INFO">
|
|
||||||
<appender-ref ref="STDOUT" />
|
|
||||||
</root>
|
|
||||||
</configuration>
|
|
|
@ -1,63 +0,0 @@
|
||||||
package com.baeldung.noexception;
|
|
||||||
|
|
||||||
import com.machinezoo.noexception.Exceptions;
|
|
||||||
import org.junit.Test;
|
|
||||||
import org.slf4j.Logger;
|
|
||||||
import org.slf4j.LoggerFactory;
|
|
||||||
|
|
||||||
public class NoExceptionUnitTest {
|
|
||||||
|
|
||||||
private static Logger logger = LoggerFactory.getLogger(NoExceptionUnitTest.class);
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void whenStdExceptionHandling_thenCatchAndLog() {
|
|
||||||
try {
|
|
||||||
System.out.println("Result is " + Integer.parseInt("foobar"));
|
|
||||||
} catch (Throwable exception) {
|
|
||||||
logger.error("Caught exception:", exception);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void whenDefaultNoException_thenCatchAndLog() {
|
|
||||||
|
|
||||||
Exceptions.log().run(() -> System.out.println("Result is " + Integer.parseInt("foobar")));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void givenLogger_whenDefaultNoException_thenCatchAndLogWithClassName() {
|
|
||||||
System.out.println("Result is " + Exceptions.log(logger).get(() -> +Integer.parseInt("foobar")).orElse(-1));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void givenLoggerAndMessage_whenDefaultNoException_thenCatchAndLogWithClassNameAndMessage() {
|
|
||||||
System.out.println("Result is " + Exceptions.log(logger, "Something went wrong:").get(() -> +Integer.parseInt("foobar")).orElse(-1));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void givenDefaultValue_whenDefaultNoException_thenCatchAndLogPrintDefault() {
|
|
||||||
System.out.println("Result is " + Exceptions.log(logger, "Something went wrong:").get(() -> +Integer.parseInt("foobar")).orElse(-1));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test(expected = Error.class)
|
|
||||||
public void givenCustomHandler_whenError_thenRethrowError() {
|
|
||||||
CustomExceptionHandler customExceptionHandler = new CustomExceptionHandler();
|
|
||||||
customExceptionHandler.run(() -> throwError());
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void givenCustomHandler_whenException_thenCatchAndLog() {
|
|
||||||
CustomExceptionHandler customExceptionHandler = new CustomExceptionHandler();
|
|
||||||
customExceptionHandler.run(() -> throwException());
|
|
||||||
}
|
|
||||||
|
|
||||||
private static void throwError() {
|
|
||||||
throw new Error("This is very bad.");
|
|
||||||
}
|
|
||||||
|
|
||||||
private static void throwException() {
|
|
||||||
String testString = "foo";
|
|
||||||
testString.charAt(5);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
2
pom.xml
2
pom.xml
|
@ -504,7 +504,6 @@
|
||||||
<module>mustache</module>
|
<module>mustache</module>
|
||||||
<module>mybatis</module>
|
<module>mybatis</module>
|
||||||
|
|
||||||
<module>noexception</module>
|
|
||||||
|
|
||||||
<module>optaplanner</module>
|
<module>optaplanner</module>
|
||||||
<module>orika</module>
|
<module>orika</module>
|
||||||
|
@ -1149,7 +1148,6 @@
|
||||||
<module>mustache</module>
|
<module>mustache</module>
|
||||||
<module>mybatis</module>
|
<module>mybatis</module>
|
||||||
|
|
||||||
<module>noexception</module>
|
|
||||||
|
|
||||||
<module>optaplanner</module>
|
<module>optaplanner</module>
|
||||||
<module>orika</module>
|
<module>orika</module>
|
||||||
|
|
Loading…
Reference in New Issue