blob: 95cd44949eca50f6588939c180cd271c9dbb5e44 (
plain) (
blame)
1
2
3
4
5
6
7
|
package cuchaz.enigma.throwables;
public class MappingConflict extends Exception {
public MappingConflict(String clazz, String name, String nameExisting) {
super(String.format("Conflicting mappings found for %s. The mapping file is %s and the second is %s", clazz, name, nameExisting));
}
}
|