Revert StaticDisplayState; For hosted only allow debug to be used.
[SquirrelJME.git] / modules / midp-lcdui / src / test / java / mleui / forms / FormTestException.java
blobf2e3ca3c223d5148020ce0890e4e0bb4515a9de1
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 mleui.forms;
12 /**
13 * Used to indicate a specific exception in form tests.
15 * @since 2020/07/19
17 public final class FormTestException
18 extends RuntimeException
20 /**
21 * Initializes the exception.
23 * @param __c The cause.
24 * @since 2020/07/19
26 public FormTestException(Throwable __c)
28 super(__c);