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