1package org.tm.archive.util; 2 3public class BitmapDecodingException extends Exception { 4 5 public BitmapDecodingException(String s) { 6 super(s); 7 } 8 9 public BitmapDecodingException(Exception nested) { 10 super(nested); 11 } 12}