package schedframe.exceptions; public class CandidateHostsNotFoundException extends ModuleException { private static final long serialVersionUID = 7913014515327279710L; public CandidateHostsNotFoundException() { super(); } public CandidateHostsNotFoundException(String message) { super(message); } public CandidateHostsNotFoundException(String message, Throwable cause) { super(message, cause); } public CandidateHostsNotFoundException(Throwable cause) { super(cause); } }