1 package org.paneris.bibliomania.metasearch.bob;
2
3 import org.melati.util.MelatiRuntimeException;
4
5 public class OpenException extends MelatiRuntimeException {
6 private static final long serialVersionUID = 1L;
7
8 public OpenException(Exception problem) {
9 super(problem);
10 }
11
12 public String getMessage() {
13 return "Trouble looking at Blackwell's bookshop\n" + subException;
14 }
15 }