NotFoundException.java 198 Bytes
Newer Older
1 2 3 4 5 6 7 8
package at.ac.tuwien.sepm.assignment.individual.exception;

public class NotFoundException extends RuntimeException {

    public NotFoundException(String message) {
        super(message);
    }
}