module antlr.v4.runtime.tree.CannotInvokeStartRule;

import antlr.v4.runtime.RuntimeException;

/**
 * TODO add class description
 */
class CannotInvokeStartRule : RuntimeException
{

    public this(Exception e)
    {
        super(e);
    }

}