blob: d281a93f1e291eefe35b5f3844525356e7d2c555 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
package ftbsc.lll.exceptions;
import ftbsc.lll.tools.SrgMapper;
/**
* Thrown upon failure to find the requested mapping within a loaded {@link SrgMapper}.
*/
public class MappingNotFoundException extends RuntimeException {
public MappingNotFoundException(String mapping) {
super("Could not find mapping for " + mapping + "!");
}
}
|