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
.manifest
;
12 import cc
.squirreljme
.runtime
.cldc
.annotation
.Exported
;
15 * This is thrown when the manifest is not valid.
20 public class JavaManifestException
21 extends RuntimeException
24 * Initialize the exception with no message or cause.
29 public JavaManifestException()
34 * Initialize the exception with a message and no cause.
36 * @param __m The message.
40 public JavaManifestException(String __m
)
46 * Initialize the exception with a message and cause.
48 * @param __m The message.
49 * @param __c The cause.
53 public JavaManifestException(String __m
, Throwable __c
)
59 * Initialize the exception with no message and with a cause.
61 * @param __c The cause.
65 public JavaManifestException(Throwable __c
)