1 package org.robolectric.manifest; 2 3 public class RoboNotFoundException extends Exception { RoboNotFoundException(String name)4 public RoboNotFoundException(String name) { 5 super(name); 6 } 7 } 8