Newer
Older
MpAndroidChart / MPChartLib / src / main / java / com / github / mikephil / charting / exception / DrawingDataSetNotCreatedException.java
Bello on 7 Feb 2018 356 bytes init
package com.github.mikephil.charting.exception;

public class DrawingDataSetNotCreatedException extends RuntimeException {

	/**
     * 
     */
    private static final long serialVersionUID = 1L;

    public DrawingDataSetNotCreatedException() {
		super("Have to create a new drawing set first. Call ChartData's createNewDrawingDataSet() method");
	}

}