// // Copyright (c)1998-2011 Pearson Education, Inc. or its affiliate(s). // All rights reserved. // package openadk.library; /** * Exception signaling that an error has occurred processing a message. * * @author Eric Petersen * @version ADK 1.0 */ public class ADKMessagingException extends ADKException { /** * */ private static final long serialVersionUID = Element.CURRENT_SERIALIZE_VERSION; public ADKMessagingException( String msg, Zone zone ) { super(msg,zone); } public ADKMessagingException( String msg, Zone zone, Throwable src ) { super(msg, zone, src); } }