package husacct.validate.domain.exception; public class ProgrammingLanguageNotFoundException extends RuntimeException { private static final long serialVersionUID = 546237525481467995L; public ProgrammingLanguageNotFoundException() { super(); } public ProgrammingLanguageNotFoundException(String programmingLanguage) { super(programmingLanguage); } }