blob: 05d1b4fee195f456d0a990ed51f75fa79a09b03c [file] [log] [blame]
/**
*
*/
package org.apache.activemq.protobuf.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;
}
}