Skip to content
Snippets Groups Projects
Select Git revision
  • a4af498354223a9b4ca1acdb77b2f081cb9e6d13
  • master default protected
  • removing_internal_representations
3 results

Server.java

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