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

jadx.plugins.input.java.data.code.trycatch.JavaSingleCatch Maven / Gradle / Ivy

The newest version!
package jadx.plugins.input.java.data.code.trycatch;

import org.jetbrains.annotations.Nullable;

public class JavaSingleCatch {
	private final int handler;
	private final @Nullable String type;

	public JavaSingleCatch(int handler, @Nullable String type) {
		this.handler = handler;
		this.type = type;
	}

	public int getHandler() {
		return handler;
	}

	public @Nullable String getType() {
		return type;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy