All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.snapscript.compile.verify.VerifyException Maven / Gradle / Ivy

There is a newer version: 1.4.6
Show newest version
package org.snapscript.compile.verify;

import java.util.List;

import org.snapscript.core.error.InternalException;

public class VerifyException extends InternalException {
   
   private final List errors;
   
   public VerifyException(String message, List errors) {
      super(message);
      this.errors = errors;
   }
   
   public List getErrors() {
      return errors;
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy