Back to project page Dreamer.
The source code is released under:
Apache License
If you think the Android project Dreamer 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.android.fancyblurdemo.app.imageblur; /* w w w. j a va 2s .com*/ /** * Created by kevin.marlow on 3/26/14. */ public class BlurError extends Exception { public BlurError() {} public BlurError(String exceptionMessage) { super(exceptionMessage); } public BlurError(String exceptionMessage, Throwable reason) { super(exceptionMessage, reason); } public BlurError(Throwable cause) { super(cause); } }