package org.andengine.util.exception; /** * (c) 2010 Nicolas Gramlich * (c) 2011 Zynga Inc. * * @author Nicolas Gramlich * @since 20:17:14 - 04.03.2011 */ public class BluetoothException extends AndEngineException { // =========================================================== // Constants // =========================================================== private static final long serialVersionUID = -8552336984977745238L; // =========================================================== // Fields // =========================================================== // =========================================================== // Constructors // =========================================================== public BluetoothException() { } public BluetoothException(final String pMessage) { super(pMessage); } public BluetoothException(final Throwable pThrowable) { super(pThrowable); } public BluetoothException(final String pMessage, final Throwable pThrowable) { super(pMessage, pThrowable); } // =========================================================== // Getter & Setter // =========================================================== // =========================================================== // Methods for/from SuperClass/Interfaces // =========================================================== // =========================================================== // Methods // =========================================================== // =========================================================== // Inner and Anonymous Classes // =========================================================== }