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; /*w w w .ja v a 2 s. co m*/ /** * This is thrown by services when there is a low-level problem while processing * an action execution. * * @author David Peterson */ public class ServiceException extends DispatchException { private static final long serialVersionUID = 1L; protected ServiceException() {} public ServiceException( String message ) { super( message ); } public ServiceException( String message, Throwable cause ) { super( message, cause ); } public ServiceException( Throwable cause ) { super( cause ); } }