Back to project page libgdx-chat-example.
The source code is released under:
Apache License
If you think the Android project libgdx-chat-example listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.stofkat.chat.common.exceptions; /*from w ww.j ava2s. c om*/ /** * These are thrown by {@link Dispatch#execute(Action)} if there is a problem * executing a particular {@link Action}. * * @author David Peterson */ public abstract class ActionException extends DispatchException { private static final long serialVersionUID = 1L; protected ActionException() {} public ActionException(String message) { super(message); } public ActionException(Throwable cause) { super(cause); } public ActionException(String message, Throwable cause) { super(message, cause); } }