1 // -*- Mode: Java; indent-tabs-mode: t; tab-width: 4 -*-
2 // ---------------------------------------------------------------------------
4 // Copyright (C) Stephanie Gawroriski <xer@multiphasicapps.net>
5 // ---------------------------------------------------------------------------
6 // SquirrelJME is under the GNU General Public License v3+, or later.
7 // See license.mkd for licensing and copyright information.
8 // ---------------------------------------------------------------------------
10 package cc
.squirreljme
.jvm
.suite
;
12 import cc
.squirreljme
.runtime
.cldc
.annotation
.Exported
;
15 * This is thrown when a midlet has an invalid property or is otherwise not
21 public class InvalidSuiteException
22 extends IllegalArgumentException
25 * Initialize the exception with no message or cause.
30 public InvalidSuiteException()
35 * Initialize the exception with a message and no cause.
37 * @param __m The message.
41 public InvalidSuiteException(String __m
)
47 * Initialize the exception with a message and cause.
49 * @param __m The message.
50 * @param __c The cause.
54 public InvalidSuiteException(String __m
, Throwable __c
)
60 * Initialize the exception with no message and with a cause.
62 * @param __c The cause.
66 public InvalidSuiteException(Throwable __c
)