package com.owera.xaps.tr069.exception; public class TR069AuthenticationException extends TR069Exception { private static final long serialVersionUID = 4703474182491184668L; public TR069AuthenticationException(String errorMsg, TR069ExceptionShortMessage shortMsg, Throwable t) { super(errorMsg, shortMsg, t); // TODO Auto-generated constructor stub } public TR069AuthenticationException(String errorMsg, Throwable t) { super(errorMsg, TR069ExceptionShortMessage.AUTHENTICATION, t); } public TR069AuthenticationException(String errorMsg, Throwable t, Integer HTTPErrorCode) { super(errorMsg, TR069ExceptionShortMessage.AUTHENTICATION, t); this.setHTTPErrorCode(HTTPErrorCode); } }