Make it so mapping files are used and then reapplied.
[SquirrelJME.git] / modules / cldc-compact / src / main / java / cc / squirreljme / jvm / suite / InvalidSuiteException.java
blob82d4d296532edaa228a7170e0354a9fed154b944
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 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;
14 /**
15 * This is thrown when a midlet has an invalid property or is otherwise not
16 * valid.
18 * @since 2017/11/23
20 @Exported
21 public class InvalidSuiteException
22 extends IllegalArgumentException
24 /**
25 * Initialize the exception with no message or cause.
27 * @since 2017/11/23
29 @Exported
30 public InvalidSuiteException()
34 /**
35 * Initialize the exception with a message and no cause.
37 * @param __m The message.
38 * @since 2017/11/23
40 @Exported
41 public InvalidSuiteException(String __m)
43 super(__m);
46 /**
47 * Initialize the exception with a message and cause.
49 * @param __m The message.
50 * @param __c The cause.
51 * @since 2017/11/23
53 @Exported
54 public InvalidSuiteException(String __m, Throwable __c)
56 super(__m, __c);
59 /**
60 * Initialize the exception with no message and with a cause.
62 * @param __c The cause.
63 * @since 2017/11/23
65 @Exported
66 public InvalidSuiteException(Throwable __c)
68 super(__c);