SquirrelJME/SquirrelJME

View on GitHub
modules/cldc-compact/src/main/java/cc/squirreljme/runtime/cldc/io/IBM037Decoder.java

Summary

Maintainability
A
0 mins
Test Coverage
// -*- Mode: Java; indent-tabs-mode: t; tab-width: 4 -*-
// ---------------------------------------------------------------------------
// Multi-Phasic Applications: 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 cc.squirreljme.runtime.cldc.io;

import cc.squirreljme.runtime.cldc.debug.Debugging;

/**
 * Decoder for IBM 037, aka EBCDIC.
 *
 * @since 2022/07/12
 */
public class IBM037Decoder
    extends IBM037Base
    implements Decoder
{
    /**
     * {@inheritDoc}
     * @since 2022/07/12
     */
    @Override
    public int decode(byte[] __b, int __o, int __l)
        throws IndexOutOfBoundsException, NullPointerException
    {
        throw Debugging.todo();
    }
}