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

com.daiyc.extension.processor.exception.BaseCompileException Maven / Gradle / Ivy

package com.daiyc.extension.processor.exception;

import javax.lang.model.element.Element;

/**
 * @author daiyc
 * @since 2024/8/18
 */
public abstract class BaseCompileException extends RuntimeException {
    protected Element element;

    public BaseCompileException() {
    }

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

    public BaseCompileException(Element element) {
        this.element = element;
    }

    public BaseCompileException(String message, Element element) {
        super(message);
        this.element = element;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy