Back to project page Thrift-box.
The source code is released under:
GNU General Public License
If you think the Android project Thrift-box listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.github.mikephil.charting.exception; /*from w ww . j a v a2 s.c o m*/ 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"); } }