Back to project page SIC.
The source code is released under:
MIT License
If you think the Android project SIC 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.sun.imageloader.memorizer.api; /*w w w .j ava 2s. c om*/ public class InterruptedImageLoadException extends Exception { private static final long serialVersionUID = 2220427131392491536L; public InterruptedImageLoadException() { super(); } public InterruptedImageLoadException(String message) { super(message); } public InterruptedImageLoadException(String message, Throwable cause) { super(message, cause); } public InterruptedImageLoadException(Throwable cause) { super(cause); } }