com.segment.analytics.InvalidConfigurationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
The hassle-free way to add analytics to your Android app.
package com.segment.analytics;
/**
* Exception thrown when an integration could not be initialized due to an invalid configuration.
* In most cases this would be due to missing permissions.
*/
class InvalidConfigurationException extends Exception {
InvalidConfigurationException(String detailMessage) {
super(detailMessage);
}
}