mirror of
https://github.com/zaaarf/lillero-mapper.git
synced 2024-11-22 21:04:49 +01:00
chore: removed unused exception
This commit is contained in:
parent
296d5378b2
commit
d618b5ff01
1 changed files with 0 additions and 27 deletions
|
@ -1,27 +0,0 @@
|
||||||
package ftbsc.lll.exceptions;
|
|
||||||
|
|
||||||
import ftbsc.lll.mapper.IMapper;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Thrown when a given {@link IMapper} cannot uniquely identify a mapping with
|
|
||||||
* the given data.
|
|
||||||
*/
|
|
||||||
public class AmbiguousMappingException extends RuntimeException {
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Constructs a new ambiguous mapping definition exception with the specified detail message.
|
|
||||||
* @param message the detail message
|
|
||||||
*/
|
|
||||||
public AmbiguousMappingException(String message) {
|
|
||||||
super(message);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Constructs a new ambiguous definition exception with the specified detail message and cause.
|
|
||||||
* @param message the detail message
|
|
||||||
* @param cause the cause, may be null (indicating nonexistent or unknown cause)
|
|
||||||
*/
|
|
||||||
public AmbiguousMappingException(String message, Throwable cause) {
|
|
||||||
super(message, cause);
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in a new issue