1 | if (null != specificationVersion) {↵ | | 1 | if (null != specificationVersion) {↵
|
2 | try {↵ | | 2 | try {↵
|
3 | this.specificationVersion↵ | | 3 | this.specificationVersion↵
|
4 | = new DeweyDecimal(specificationVersion);↵ | | 4 | = new DeweyDecimal(specificationVersion);↵
|
5 | } catch (final NumberFormatException nfe) {↵ | | 5 | } catch (final NumberFormatException nfe) {↵
|
6 | final String error = "Bad specification version format '"↵ | | 6 | final String error = "Bad specification version format '"↵
|
7 | + specificationVersion + "' in '" + extensionName↵ | | 7 | + specificationVersion + "' in '" + specificationTitle↵
|
8 | + "'. (Reason: " + nfe + ")";↵ | | 8 | + "'. (Reason: " + nfe + ")";↵
|
9 | throw new IllegalArgumentException(error);↵ | | 9 | throw new IllegalArgumentException(error);↵
|
10 | | | 10 |
|