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

com.googlecode.d2j.dex.writer.DexWriteException Maven / Gradle / Ivy

There is a newer version: 2.4.22
Show newest version
package com.googlecode.d2j.dex.writer;

public class DexWriteException extends RuntimeException {

    private static final long serialVersionUID = 8501861997187282533L;

    public DexWriteException() {
        super();

    }

    public DexWriteException(String message) {
        super(message);

    }

    public DexWriteException(String message, Throwable cause) {
        super(message, cause);

    }

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

    }

    public DexWriteException(Throwable cause) {
        super(cause);

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy