/**
*
*/
package org.fusesource.hawtbuf.proto.compiler;
import java.util.List;
public class CompilerException extends Exception {
private final List<String> errors;
public CompilerException(List<String> errors) {
this.errors = errors;
}
public List<String> getErrors() {
return errors;
}
}