SquirrelJME/SquirrelJME

View on GitHub
modules/bluetooth/src/main/java/javax/bluetooth/BluetoothStateException.java

Summary

Maintainability
A
0 mins
Test Coverage
// -*- Mode: Java; indent-tabs-mode: t; tab-width: 4 -*-
// ---------------------------------------------------------------------------
// SquirrelJME
//     Copyright (C) Stephanie Gawroriski <xer@multiphasicapps.net>
// ---------------------------------------------------------------------------
// SquirrelJME is under the Mozilla Public License Version 2.0.
// See license.mkd for licensing and copyright information.
// ---------------------------------------------------------------------------

package javax.bluetooth;

import cc.squirreljme.runtime.cldc.annotation.Api;
import cc.squirreljme.runtime.cldc.debug.Debugging;
import java.io.IOException;

@Api
public class BluetoothStateException
    extends IOException
{
    @Api
    public BluetoothStateException()
    {
        throw Debugging.todo();
    }
    
    @Api
    public BluetoothStateException(String __s)
    {
        throw Debugging.todo();
    }
}