1 package com.xtremelabs.robolectric.bytecode; 2 3 import javassist.NotFoundException; 4 5 public class IgnorableClassNotFoundException extends NotFoundException { 6 public IgnorableClassNotFoundException(NotFoundException e) { 7 super("msg", e); 8 } 9 } 10