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

okw.OKW_HandleException Maven / Gradle / Ivy

Go to download

This is the core-module of OpenKeyWord. This module is automatically integrated by the adapters. In GUI automation, the core module is automatically integrated by the GUI modules (dependencies).

There is a newer version: 0.2.44
Show newest version
package okw;

import java.io.ByteArrayOutputStream;
import java.io.PrintStream;

public class OKW_HandleException
{

	public static void StopRunning( Exception e, Class fpClass )
	{

		final ByteArrayOutputStream stream = new ByteArrayOutputStream();
		e.printStackTrace(new PrintStream(stream));

		System.out.println("=================================================================================");
		System.out.println("= Exception during initialization of Class >>" + fpClass.getName() + "<




© 2015 - 2024 Weber Informatics LLC | Privacy Policy