package at.gv.egovernment.moa.spss.api.xmlsign; /** * Object containing detailed error information. * * @author Patrick Peck * @author Stephan Grill * @version $Id$ */ public interface ErrorResponse extends CreateXMLSignatureResponseElement { /** * Gets the error code. * * @return The error code. */ public int getErrorCode(); /** * Gets verbose error information. * * @return Verbose error information. */ public String getInfo(); }