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

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

Go to download

Annotation Processor for the Mixpanel library for Android http://mixpanel.com/android-analytics/

The newest version!
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