summaryrefslogtreecommitdiff
path: root/src/main/java/ATCCodes/FileParsingException.java
blob: b00957873dbaddb40cd7204a5d66948204eaf747 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package ATCCodes;

/**
 * Exception to be thrown if any file parsing error occurs
 *
 * @author Paul-Christian Volkmer
 * @since 0.1.0
 */
public class FileParsingException extends RuntimeException {

    public FileParsingException(final String msg) {
        super(msg);
    }
}