aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/ftbsc/lll/processor/exceptions/MappingsFileNotFoundException.java
blob: 8636226612b728a88fa8c273555add8a8cd32f9c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
package ftbsc.lll.processor.exceptions;

/**
 * Thrown upon failure to locate the output.tsrg file at runtime.
 */
public class MappingsFileNotFoundException extends RuntimeException {
   public MappingsFileNotFoundException() {
      super("Could not find a mappings file in the specified location!");
   }
}