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
.plugin
.swm
;
13 * This is thrown when a midlet has an invalid property or is otherwise not
18 public class InvalidSuiteException
19 extends IllegalArgumentException
22 * Initialize the exception with no message or cause.
26 public InvalidSuiteException()
31 * Initialize the exception with a message and no cause.
33 * @param __m The message.
36 public InvalidSuiteException(String __m
)
42 * Initialize the exception with a message and cause.
44 * @param __m The message.
45 * @param __c The cause.
48 public InvalidSuiteException(String __m
, Throwable __c
)
54 * Initialize the exception with no message and with a cause.
56 * @param __c The cause.
59 public InvalidSuiteException(Throwable __c
)