01: package org.compass.gps.device.jpa;
02:
03: import org.compass.gps.CompassGpsException;
04:
05: /**
06: * A Jpa specific Gps device exception.
07: *
08: * @author kimchy
09: */
10: public class JpaGpsDeviceException extends CompassGpsException {
11:
12: private static final long serialVersionUID = 4051326747222029623L;
13:
14: public JpaGpsDeviceException(String string, Throwable root) {
15: super (string, root);
16: }
17:
18: public JpaGpsDeviceException(String s) {
19: super(s);
20: }
21: }
|