1 /*
2 * $Id: NoRemoteData.java 1419 2010-11-01 14:12:17Z hoheisel $
3 *
4 * Copyright (c) Jun 27, 2006
5 * Fraunhofer Institute for Computer Architecture and Software Technology
6 * See http://www.first.fraunhofer.de for more details.
7 */
8
9 package net.kwfgrid.gwes.prorater;
10
11 import java.io.IOException;
12
13 /**
14 * IOException indicating that the database contains no data (but the remote connection was ok).
15 * @author Helge Rose'
16 * @version $Id: NoRemoteData.java 1419 2010-11-01 14:12:17Z hoheisel $
17 */
18 public class NoRemoteData extends IOException
19 {
20 public NoRemoteData(String s)
21 {
22 super(s);
23 }
24 }