Offload int[] to byte[].
[SquirrelJME.git] / modules / meep-swm / src / main / java / javax / microedition / swm / SuiteLockedException.java
blobc6a88a583d13b75cd04a6353d6d2b9a71041ddc7
1 // -*- Mode: Java; indent-tabs-mode: t; tab-width: 4 -*-
2 // ---------------------------------------------------------------------------
3 // SquirrelJME
4 // Copyright (C) Stephanie Gawroriski <xer@multiphasicapps.net>
5 // ---------------------------------------------------------------------------
6 // SquirrelJME is under the Mozilla Public License Version 2.0.
7 // See license.mkd for licensing and copyright information.
8 // ---------------------------------------------------------------------------
10 package javax.microedition.swm;
12 import cc.squirreljme.runtime.cldc.annotation.Api;
13 import java.io.IOException;
15 /**
16 * This is thrown when a suite cannot be removed, either because it is not
17 * permitted or it is currently in use.
19 * @since 2016/06/24
21 @Api
22 public class SuiteLockedException
23 extends IOException
25 /**
26 * Initializes the exception with no message.
28 * @since 2016/06/24
30 @Api
31 public SuiteLockedException()
35 /**
36 * Initializes the exception with the given message.
38 * @param __s The message to use.
39 * @since 2016/06/24
41 @Api
42 public SuiteLockedException(String __s)
44 super(__s);