9 lines
319 B
Java
9 lines
319 B
Java
package com.github.mikephil.charting.exception;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class DrawingDataSetNotCreatedException extends RuntimeException {
|
|
public DrawingDataSetNotCreatedException() {
|
|
super("Have to create a new drawing set first. Call ChartData's createNewDrawingDataSet() method");
|
|
}
|
|
}
|