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

com.adrninistrator.javacg2.dto.exception.ExceptionTargetInfo Maven / Gradle / Ivy

package com.adrninistrator.javacg2.dto.exception;

import org.apache.bcel.generic.InstructionHandle;

/**
 * @author adrninistrator
 * @date 2022/10/30
 * @description: Exception table的target指令及异常类型
 */
public class ExceptionTargetInfo {

    // Exception table的target指令
    private final InstructionHandle target;

    // 异常类型
    private final String exceptionType;

    public ExceptionTargetInfo(InstructionHandle target, String exceptionType) {
        this.target = target;
        this.exceptionType = exceptionType;
    }

    public InstructionHandle getTarget() {
        return target;
    }

    public String getExceptionType() {
        return exceptionType;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy