Back to project page osu-taste-portable.
The source code is released under:
Apache License
If you think the Android project osu-taste-portable 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.dgsrz.osuTaste.exception; /*from ww w.j av a2 s. c om*/ /** * Created by: dgsrz * Date: 2014-01-31 16:40 */ public class BeatmapParsingException extends Exception { public BeatmapParsingException() { } public BeatmapParsingException(String message) { super(message); } public BeatmapParsingException(String message, Exception cause) { super(message, cause); } }