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

com.satori.composer.runtime.CheckFailedException Maven / Gradle / Ivy

package com.satori.composer.runtime;


import org.slf4j.helpers.*;

public class CheckFailedException extends Exception {
  
  public CheckFailedException() {
  }
  
  public CheckFailedException(String message) {
    super(message);
  }
  
  public CheckFailedException(String message, Object... args) {
    this(MessageFormatter.format(message, args).getMessage());
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy