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

org.snapscript.compile.validate.ValidateException Maven / Gradle / Ivy

package org.snapscript.compile.validate;

import org.snapscript.core.error.InternalException;

public class ValidateException extends InternalException {

   public ValidateException(String message) {
      super(message);
   }
   
   public ValidateException(String message, Throwable cause) {
      super(message, cause);
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy