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

com.github.unidbg.linux.android.dvm.jni.ProxyDvmException Maven / Gradle / Ivy

There is a newer version: 0.9.8
Show newest version
package com.github.unidbg.linux.android.dvm.jni;

public abstract class ProxyDvmException extends RuntimeException {

    public ProxyDvmException() {
    }

    public ProxyDvmException(String message) {
        super(message);
    }

    public ProxyDvmException(String message, Throwable cause) {
        super(message, cause);
    }

    public ProxyDvmException(Throwable cause) {
        super(cause);
    }

    public ProxyDvmException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy