001    /**
002     *
003     */
004    package org.fusesource.hawtbuf.proto.compiler;
005    
006    import java.util.List;
007    
008    public class CompilerException extends Exception {
009        private final List<String> errors;
010    
011        public CompilerException(List<String> errors) {
012            this.errors = errors;
013        }
014    
015        public List<String> getErrors() {
016            return errors;
017        }
018    }