package com.owera.xaps.tr069.exception; public class TR069DatabaseException extends TR069ServerException { private static final long serialVersionUID = -8002456201010264031L; public TR069DatabaseException(String errorMsg, TR069ExceptionShortMessage shortMsg, Throwable t) { super(errorMsg, shortMsg, t); } public TR069DatabaseException(String errorMsg, Throwable t) { super(errorMsg, TR069ExceptionShortMessage.DATABASE, t); } public TR069DatabaseException(Throwable t) { super("Database not responding or exception occurred", TR069ExceptionShortMessage.DATABASE, t); } }