com.ibm.staf.STAFException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jstaf Show documentation
Show all versions of jstaf Show documentation
The Software Testing Automation Framework (STAF) is an open source,
multi-platform, multi-language framework designed around the idea of reusable
components, called services (such as process invocation, resource management,
logging, and monitoring). STAF removes the tedium of building an automation
infrastructure, thus enabling you to focus on building your automation solution.
The STAF framework provides the foundation upon which to build higher level
solutions, and provides a pluggable approach supported across a large variety
of platforms and languages.
This component contains the STAF Java API
(http://staf.sourceforge.net/current/STAFJava.htm ) only.
For more information see http://staf.sourceforge.net/ .
The newest version!
/*****************************************************************************/
/* Software Testing Automation Framework (STAF) */
/* (C) Copyright IBM Corp. 2001 */
/* */
/* This software is licensed under the Eclipse Public License (EPL) V1.0. */
/*****************************************************************************/
package com.ibm.staf;
// STAFException - This class is an exception class that is used/thrown by
// the STAFHandle class. The rc variable allows you to
// access the actual return code issued by STAF. You can
// use the standard throwable method GetMessage() to
// retrieve any extra data regarding the exception.
public class STAFException extends Exception
{
public STAFException() { super(); rc = 0; }
public STAFException(int theRC) { super(); rc = theRC; }
public STAFException(int theRC, String s) { super(s); rc = theRC; }
public int rc;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy