Back to project page android-api.
The source code is released under:
Apache License
If you think the Android project android-api listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
// Copyright 2010 Square, Inc. package com.squareup.android; // w ww . j a v a 2s . c om /** * Thrown when an image can't be found. * * @author Bob Lee (bob@squareup.com) */ public final class ImageNotFoundException extends RuntimeException { public ImageNotFoundException() {} public ImageNotFoundException(String detailMessage) { super(detailMessage); } public ImageNotFoundException(String detailMessage, Throwable throwable) { super(detailMessage, throwable); } public ImageNotFoundException(Throwable throwable) { super(throwable); } }