chore: removed unused exception

This commit is contained in:
zaaarf 2023-08-26 22:02:56 +02:00
parent 296d5378b2
commit d618b5ff01
No known key found for this signature in database
GPG key ID: 6445A5CD15E5B40C

View file

@ -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);
}
}