/** * <copyright> * </copyright> * * */ package org.dresdenocl.language.ocl.resource.ocl.mopp; import org.antlr.runtime3_4_0.RecognitionException; /** * <p> * An Excpetion to represent invalid content types for parser instances. * </p> * * @see org.dresdenocl.language.ocl.resource.ocl.IOclOptions.RESOURCE_CONTENT_TYPE */ public class OclUnexpectedContentTypeException extends RecognitionException { private static final long serialVersionUID = 4791359811519433999L; private Object contentType = null; public OclUnexpectedContentTypeException(Object contentType) { this.contentType = contentType; } public Object getContentType() { return contentType; } }