public static void RaiseThrowable(Java.Lang.Throwable throwable)
 {
     if (throwable == null)
     {
         throw new ArgumentNullException("throwable");
     }
     JNIEnv.Throw(throwable.Handle);
 }