![JAR search and dependency download from the Maven repository](/logo.png)
no.ssb.jsonstat.v2.DimensionNotFoundException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of json-stat-java Show documentation
Show all versions of json-stat-java Show documentation
Json stat implementation in Java
The newest version!
package no.ssb.jsonstat.v2;
/**
* Created by hadrien on 15/06/16.
*/
public class DimensionNotFoundException extends RuntimeException {
private final String dimensionName;
private final Dataset dataset;
public DimensionNotFoundException(String message, String dimensionName, Dataset dataset) {
super(message);
this.dimensionName = dimensionName;
this.dataset = dataset;
}
public String getDimensionName() {
return dimensionName;
}
public Dataset getDataset() {
return dataset;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy