Skip to content
Snippets Groups Projects
Select Git revision
  • aa5befbc3c0483045641df45fb16cace434ab46f
  • master default
  • ember-ui
3 results

PreprocessorException.java

Blame
  • user avatar
    Eike Cochu authored
    moved filebase implementation from util to cmd, it is analyzer sensitive
    moved exceptions to ex package
    added high precision time measurements
    simplified import command
    deleted stopwords.txt, using hardcoded variant
    da6e7e39
    History
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    PreprocessorException.java 258 B
    package de.vipra.cmd.ex;
    
    public class PreprocessorException extends Exception {
    
    	private static final long serialVersionUID = 1L;
    
    	public PreprocessorException(String msg) {
    		super(msg);
    	}
    
    	public PreprocessorException(Exception e) {
    		super(e);
    	}
    
    }