diff options
| author | 2020-06-03 13:39:42 -0400 | |
|---|---|---|
| committer | 2020-06-03 18:39:42 +0100 | |
| commit | 0f47403d0220757fed189b76e2071e25b1025cb8 (patch) | |
| tree | 879bf72c4476f0a5e0d82da99d7ff2b2276bcaca /src/main/java/cuchaz/enigma/throwables/MappingParseException.java | |
| parent | Fix search dialog hanging for a short time sometimes (#250) (diff) | |
| download | enigma-fork-0f47403d0220757fed189b76e2071e25b1025cb8.tar.gz enigma-fork-0f47403d0220757fed189b76e2071e25b1025cb8.tar.xz enigma-fork-0f47403d0220757fed189b76e2071e25b1025cb8.zip | |
Split GUI code to separate module (#242)
* Split into modules
* Post merge compile fixes
Co-authored-by: modmuss50 <modmuss50@gmail.com>
Diffstat (limited to 'src/main/java/cuchaz/enigma/throwables/MappingParseException.java')
| -rw-r--r-- | src/main/java/cuchaz/enigma/throwables/MappingParseException.java | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/src/main/java/cuchaz/enigma/throwables/MappingParseException.java b/src/main/java/cuchaz/enigma/throwables/MappingParseException.java deleted file mode 100644 index b7e6d42..0000000 --- a/src/main/java/cuchaz/enigma/throwables/MappingParseException.java +++ /dev/null | |||
| @@ -1,39 +0,0 @@ | |||
| 1 | /******************************************************************************* | ||
| 2 | * Copyright (c) 2015 Jeff Martin. | ||
| 3 | * All rights reserved. This program and the accompanying materials | ||
| 4 | * are made available under the terms of the GNU Lesser General Public | ||
| 5 | * License v3.0 which accompanies this distribution, and is available at | ||
| 6 | * http://www.gnu.org/licenses/lgpl.html | ||
| 7 | * <p> | ||
| 8 | * Contributors: | ||
| 9 | * Jeff Martin - initial API and implementation | ||
| 10 | ******************************************************************************/ | ||
| 11 | |||
| 12 | package cuchaz.enigma.throwables; | ||
| 13 | |||
| 14 | import java.io.File; | ||
| 15 | import java.util.function.Supplier; | ||
| 16 | |||
| 17 | public class MappingParseException extends Exception { | ||
| 18 | |||
| 19 | private int line; | ||
| 20 | private String message; | ||
| 21 | private String filePath; | ||
| 22 | |||
| 23 | public MappingParseException(File file, int line, String message) { | ||
| 24 | this.line = line; | ||
| 25 | this.message = message; | ||
| 26 | filePath = file.getAbsolutePath(); | ||
| 27 | } | ||
| 28 | |||
| 29 | public MappingParseException(Supplier<String> filenameProvider, int line, String message) { | ||
| 30 | this.line = line; | ||
| 31 | this.message = message; | ||
| 32 | filePath = filenameProvider.get(); | ||
| 33 | } | ||
| 34 | |||
| 35 | @Override | ||
| 36 | public String getMessage() { | ||
| 37 | return "Line " + line + ": " + message + " in file " + filePath; | ||
| 38 | } | ||
| 39 | } | ||