blob: ca1f75c366290117a0ad4bd2d4a0e9b348bf5c29 (
plain) (
blame)
1
2
3
4
5
6
7
|
package ftbsc.lll.processor.exceptions;
public class MappingNotFoundException extends RuntimeException {
public MappingNotFoundException(String mapping) {
super("Could not find mapping for " + mapping + "!");
}
}
|