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

org.sikuli.script.SikuliXception Maven / Gradle / Ivy

There is a newer version: 2.0.5
Show newest version
/*
 * Copyright (c) 2010-2019, sikuli.org, sikulix.com - MIT license
 */
package org.sikuli.script;

/**
 * INTERNAL USE
 */
public class SikuliXception extends RuntimeException {

  public SikuliXception(String message) {
    super(message);
  }
  
  public SikuliXception(String message, Exception e) {
    super(message, e);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy