// -*- Mode: Java; indent-tabs-mode: t; tab-width: 4 -*-
// ---------------------------------------------------------------------------
// SquirrelJME
// Copyright (C) Stephanie Gawroriski <xer@multiphasicapps.net>
// ---------------------------------------------------------------------------
// SquirrelJME is under the Mozilla Public License Version 2.0.
// See license.mkd for licensing and copyright information.
// ---------------------------------------------------------------------------
package java.lang;
import cc.squirreljme.runtime.cldc.annotation.Api;
/**
* This is thrown when the given value cannot be stored into the given array
* because it is of the wrong type.
*
* @since 2018/12/04
*/
@Api
public class ArrayStoreException
extends RuntimeException
{
/**
* Initializes the exception with no message or cause.
*
* @since 2018/12/04
*/
@Api
public ArrayStoreException()
{
}
/**
* Initializes the exception with the given message and no cause.
*
* @param __m The message.
* @since 2018/12/04
*/
@Api
public ArrayStoreException(String __m)
{
super(__m);
}
}