Skip to content

Commit 0fd7bbb

Browse files
nomemoryCiobanu, Andrei-Nicolin (UK - EDC)
authored andcommitted
Fixed the error message for one of the unchecked exceptions thrown by the library.
1 parent 7075cff commit 0fd7bbb

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

bintray.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apply plugin: 'com.jfrog.bintray'
22

3-
version = '0.0.1'
3+
version = '0.0.3'
44

55
task sourcesJar(type: Jar) {
66
classifier = 'sources'

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ apply plugin: 'java'
1515
apply plugin: 'idea'
1616

1717
group 'net.andreinc'
18-
version '0.0.1'
18+
version '0.0.3'
1919

2020
repositories {
2121
mavenCentral()

src/main/java/net/andreinc/aleph/UncheckedFormatterException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
public class UncheckedFormatterException extends RuntimeException {
99

1010
private static final String INVALID_NUMBER_OF_ARGUMENTS =
11-
"Invalid number of arguments: {argsNum}. Every argument needs to have a pair.";
11+
"Invalid number of arguments: #{argsNum}. Every argument needs to have a pair.";
1212

1313
private static final String ARGUMENT_ALREADY_DEFINED =
1414
"Argument '#{arg}' is already defined in the arguments list.";

0 commit comments

Comments
 (0)