Skip to content
Snippets Groups Projects
Select Git revision
  • ad7f9eb49665a51d10d6f2c052997e954dd575c6
  • 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

FrontEndException.java

Blame
  • user avatar
    hansen authored
    ad7f9eb4
    History
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    FrontEndException.java 343 B
    package de.tla2b.exceptions;
    
    import tla2sany.modanalyzer.SpecObj;
    
    @SuppressWarnings("serial")
    public class FrontEndException extends TLA2BException{
    
    	public SpecObj spec;
    	public FrontEndException(String e){
    		super(e);
    	}
    
    	public FrontEndException(String string, SpecObj spec) {
    		super(string);
    		this.spec = spec;
    	}
    }