Back to project page image-loader.
The source code is released under:
Apache License
If you think the Android project image-loader 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.novoda.imageloader.demo.util; //w w w .java 2 s . co m public class BugsenseApiKeyFailedException extends Exception { private final String message; public BugsenseApiKeyFailedException(String message) { this.message = message; } @Override public String getMessage() { return message; } }