Skip to content
Snippets Groups Projects
Select Git revision
  • dd7fc7496b599b81dbefafa43635da2da62aeba3
  • master default protected
2 results

TCPSender.class

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