Skip to content
Snippets Groups Projects
Select Git revision
  • 52145e1eb7b6841c3c170f6fb9142867c8d7a898
  • master default
2 results

NegativeDeadlineException.java

  • NegativeDeadlineException.java 199 B
    package exceptions;
    
    public class NegativeDeadlineException extends Exception {
    
    	private static final long serialVersionUID = 1L;
    
    	public NegativeDeadlineException(String msg) {
    		super(msg);
    	}
    
    }