SquirrelJME/SquirrelJME

View on GitHub
modules/cldc-compact/src/main/java/java/io/UnsupportedEncodingException.java

Summary

Maintainability
A
0 mins
Test Coverage
// -*- 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.io;

import cc.squirreljme.runtime.cldc.annotation.Api;

/**
 * This is thrown when the encoding is not supported.
 *
 * @since 2018/12/08
 */
@Api
public class UnsupportedEncodingException
    extends IOException
{
    /**
     * Initializes the exception with no message or cause.
     *
     * @since 2018/12/08
     */
    @Api
    public UnsupportedEncodingException()
    {
    }
    
    /**
     * Initializes the exception with the given message and no cause.
     *
     * @param __m The message.
     * @since 2018/12/08
     */
    @Api
    public UnsupportedEncodingException(String __m)
    {
        super(__m);
    }
}