/** * <copyright> * </copyright> * * */ package org.reuseware.air.language.abstractsyntax.resource.as.mopp; /** * An Excpetion to represent invalid content types for parser instances. * * @see * org.reuseware.air.language.abstractsyntax.resource.as.IAsOptions.RESOURCE_CONTEN * T_TYPE */ public class AsUnexpectedContentTypeException extends org.antlr.runtime3_2_0.RecognitionException{ private static final long serialVersionUID = 4791359811519433999L; private Object contentType = null; public AsUnexpectedContentTypeException(Object contentType) { this.contentType = contentType; } public Object getContentType() { return contentType; } }