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

com.mixpanel.android.compile.IllegalTweakException Maven / Gradle / Ivy

package com.mixpanel.android.compile;

import javax.lang.model.element.Element;

public class IllegalTweakException extends Exception {
    public IllegalTweakException(String why, Element element) {
        super(why);
        mElement = element;
    }

    public Element getElement() {
        return mElement;
    }

    private Element mElement;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy