package org.rhq.plugins.storage; /** * @author John Sanda */ public class InternodeAuthConfUpdateException extends Exception { public InternodeAuthConfUpdateException() { } public InternodeAuthConfUpdateException(String message) { super(message); } public InternodeAuthConfUpdateException(String message, Throwable cause) { super(message, cause); } public InternodeAuthConfUpdateException(Throwable cause) { super(cause); } }