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

org.snapscript.common.ProgressException Maven / Gradle / Ivy

package org.snapscript.common;

public class ProgressException extends RuntimeException {

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy