diff --git a/CHANGELOG.org b/CHANGELOG.org
index 5936633..12117a8 100644
--- a/CHANGELOG.org
+++ b/CHANGELOG.org
@@ -26,7 +26,7 @@ The format is based on [[https://keepachangelog.com/en/1.0.0/][Keep a Changelog]
** Dependencies
- Bump assertj-core from 3.11.0 to 3.11.1 (#38)
- - Bump kemitix-maven-tiles from 0.9.0 to 1.3.1 (#40)
+ - Bump kemitix-maven-tiles from 0.9.0 to 2.2.0 (#40)(#44)
- Bump kemitix-parent from 5.1.1 to 5.2.0 (#39)
* 0.7.0
diff --git a/pom.xml b/pom.xml
index e61a2c0..4c4175c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -17,9 +17,8 @@
4.1.1
4.12
3.11.1
- 4.3.0
2.12
- 1.3.1
+ 2.2.0
1.18.4
diff --git a/src/main/java/net/kemitix/conditional/FalseCondition.java b/src/main/java/net/kemitix/conditional/FalseCondition.java
index aaa0f2c..5b0b99a 100644
--- a/src/main/java/net/kemitix/conditional/FalseCondition.java
+++ b/src/main/java/net/kemitix/conditional/FalseCondition.java
@@ -59,7 +59,7 @@ final class FalseCondition implements Condition {
}
@Override
- public void thenThrow(final Supplier exceptionSupplier) throws Exception {
+ public void thenThrow(final Supplier exceptionSupplier) {
// do nothing
}
diff --git a/src/main/java/net/kemitix/conditional/TrueCondition.java b/src/main/java/net/kemitix/conditional/TrueCondition.java
index 256c762..0708ae3 100644
--- a/src/main/java/net/kemitix/conditional/TrueCondition.java
+++ b/src/main/java/net/kemitix/conditional/TrueCondition.java
@@ -65,12 +65,12 @@ final class TrueCondition implements Condition {
}
@Override
- public void otherwiseThrow(final Exception exception) throws Exception {
+ public void otherwiseThrow(final Exception exception) {
// do nothing
}
@Override
- public void otherwiseThrow(final Supplier exceptionSupplier) throws Exception {
+ public void otherwiseThrow(final Supplier exceptionSupplier) {
// do nothing
}