package coneforest.psylla.core;
import coneforest.psylla.runtime.*;
/**
* The representation of the {@code unmatchedmark} error thrown when a mark expected not on the
* operand stack.
*/
@SuppressWarnings("serial")
@ErrorType("unmatchedmark")
public class PsyUnmatchedMarkException
extends PsyErrorException
{
/**
* Constructs a new {@code exception} object with null as its detail message.
*/
public PsyUnmatchedMarkException()
{
}
}