com.googlecode.d2j.dex.writer.DexWriteException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dex-writer Show documentation
Show all versions of dex-writer Show documentation
Dex/Dalvik writer for dex2jar
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);
}
}