[]Struct jni_android_sys::java::lang::Exception

#[repr(transparent)]
pub struct Exception(_);

public class Exception

Required feature: "java-lang-Exception"

Methods

impl Exception

pub fn new<'env>(
    __jni_env: &'env Env
) -> Result<Local<'env, Exception>, Local<'env, Throwable>>
[src]

pub fn new_String<'env>(
    __jni_env: &'env Env,
    arg0: impl Into<Option<&'env String>>
) -> Result<Local<'env, Exception>, Local<'env, Throwable>>
[src]

Exception

Required features: "java-lang-String"

pub fn new_String_Throwable<'env>(
    __jni_env: &'env Env,
    arg0: impl Into<Option<&'env String>>,
    arg1: impl Into<Option<&'env Throwable>>
) -> Result<Local<'env, Exception>, Local<'env, Throwable>>
[src]

Exception

Required features: "java-lang-String", "java-lang-Throwable"

pub fn new_Throwable<'env>(
    __jni_env: &'env Env,
    arg0: impl Into<Option<&'env Throwable>>
) -> Result<Local<'env, Exception>, Local<'env, Throwable>>
[src]

Exception

Required features: "java-lang-Throwable"

Methods from Deref<Target = Throwable>

pub fn getMessage<'env>(
    &'env self
) -> Result<Option<Local<'env, String>>, Local<'env, Throwable>>
[src]

getMessage

Required features: "java-lang-String"

pub fn getLocalizedMessage<'env>(
    &'env self
) -> Result<Option<Local<'env, String>>, Local<'env, Throwable>>
[src]

getLocalizedMessage

Required features: "java-lang-String"

pub fn getCause<'env>(
    &'env self
) -> Result<Option<Local<'env, Throwable>>, Local<'env, Throwable>>
[src]

getCause

Required features: "java-lang-Throwable"

pub fn initCause<'env>(
    &'env self,
    arg0: impl Into<Option<&'env Throwable>>
) -> Result<Option<Local<'env, Throwable>>, Local<'env, Throwable>>
[src]

initCause

Required features: "java-lang-Throwable"

pub fn toString<'env>(
    &'env self
) -> Result<Option<Local<'env, String>>, Local<'env, Throwable>>
[src]

toString

Required features: "java-lang-String"

pub fn printStackTrace<'env>(&'env self) -> Result<(), Local<'env, Throwable>>[src]

pub fn printStackTrace_PrintStream<'env>(
    &'env self,
    arg0: impl Into<Option<&'env PrintStream>>
) -> Result<(), Local<'env, Throwable>>
[src]

printStackTrace

Required features: "java-io-PrintStream"

pub fn printStackTrace_PrintWriter<'env>(
    &'env self,
    arg0: impl Into<Option<&'env PrintWriter>>
) -> Result<(), Local<'env, Throwable>>
[src]

printStackTrace

Required features: "java-io-PrintWriter"

pub fn fillInStackTrace<'env>(
    &'env self
) -> Result<Option<Local<'env, Throwable>>, Local<'env, Throwable>>
[src]

fillInStackTrace

Required features: "java-lang-Throwable"

pub fn getStackTrace<'env>(
    &'env self
) -> Result<Option<Local<'env, ObjectArray<StackTraceElement, Throwable>>>, Local<'env, Throwable>>
[src]

getStackTrace

Required features: "java-lang-StackTraceElement"

pub fn setStackTrace<'env>(
    &'env self,
    arg0: impl Into<Option<&'env ObjectArray<StackTraceElement, Throwable>>>
) -> Result<(), Local<'env, Throwable>>
[src]

setStackTrace

Required features: "java-lang-StackTraceElement"

pub fn addSuppressed<'env>(
    &'env self,
    arg0: impl Into<Option<&'env Throwable>>
) -> Result<(), Local<'env, Throwable>>
[src]

addSuppressed

Required features: "java-lang-Throwable"

pub fn getSuppressed<'env>(
    &'env self
) -> Result<Option<Local<'env, ObjectArray<Throwable, Throwable>>>, Local<'env, Throwable>>
[src]

getSuppressed

Required features: "java-lang-Throwable"

Trait Implementations

impl AsJValue for Exception

impl AsValidJObjectAndEnv for Exception

impl Deref for Exception

type Target = Throwable

The resulting type after dereferencing.

impl JniType for Exception

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.