// Copyright (c) 1996-2002 Brian D. Carlstrom

package bdc.scheme.exception;

import bdc.scheme.SchemeException;

/**
    throw from Scheme code by programmers with Error aka (error x)
*/
public class SchemeError extends SchemeException
{
    public SchemeError (String string)
    {
        super(string);
    }
}
