Back to project page ion.
The source code is released under:
Apache License
If you think the Android project ion 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.koushikdutta.ion.bitmap; //from w ww . j a v a 2 s .c o m /** * Created by robUx4 on 28/08/2014. */ public class BitmapDecodeException extends Exception { public final int width; public final int height; public BitmapDecodeException(int width, int height) { this.width = width; this.height = height; } @Override public String toString() { return super.toString() + " size="+width+'x'+height; } }