blob: a00c2e24adcfcc251ec37846b315350e34d33498 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package ftbsc.lll.exceptions;
/**
* Thrown when the processor finds multiple methods matching the given criteria.
*/
public class AmbiguousDefinitionException extends RuntimeException {
/**
* Constructs a new ambiguous definition exception with the specified detail message.
* @param message the detail message
*/
public AmbiguousDefinitionException(String message) {
super(message);
}
}
|