Skip to content
Snippets Groups Projects
Select Git revision
  • 90da33c8786ac4d42aa042e73dfb85fcc2807503
  • master default protected
  • cran_version
3 results

dropNamesCLP.Rd

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    VOParseException.java 347 B
    package de.prob.voparser;
    
    public class VOParseException extends Exception {
    
    	public enum ErrorType {
    		PARSING, SCOPING, TYPECHECKING
    	}
    
    	private ErrorType errorType;
    
    	public VOParseException(String message, ErrorType errorType) {
    		super(message);
    		this.errorType = errorType;
    	}
    
    	public ErrorType getErrorType() {
    		return errorType;
    	}
    }