Skip to content
Snippets Groups Projects
Select Git revision
  • 8bb35caca5f77ac10a6d5f78e0265862e1e83af0
  • master default protected
  • release/1.1.4
  • release/1.1.3
  • release/1.1.1
  • 1.4.2
  • 1.4.1
  • 1.4.0
  • 1.3.0
  • 1.2.1
  • 1.2.0
  • 1.1.5
  • 1.1.4
  • 1.1.3
  • 1.1.1
  • 1.1.0
  • 1.0.9
  • 1.0.8
  • 1.0.7
  • v1.0.5
  • 1.0.5
21 results

TestUtil.java

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;
    	}
    }