Rhino.Kit.Kit C# (CSharp) Method

Kit() static private method

static private Kit ( ) : System
return System
		static Kit()
		{
			// Are we running on a JDK 1.4 or later system?
			try
			{
				Type ThrowableClass = Kit.ClassOrNull("java.lang.Throwable");
				Type[] signature = new Type[] { ThrowableClass };
				Throwable_initCause = ThrowableClass.GetMethod("initCause", signature);
			}
			catch (Exception)
			{
			}
		}