1 package info.ejava.examples.jaxrs.todos.ejb; 2 3 public class ResourceNotFoundException extends ClientErrorException { 4 private static final long serialVersionUID = -3148800979343416687L; 5 6 public ResourceNotFoundException(String format, Object...args) { 7 super(String.format(format, args)); 8 } 9 public ResourceNotFoundException(String msg) { 10 super(msg); 11 } 12 }