Moved NotEnoughDataHasBeenAddedException into GWT module com.sap.sailing.domain.common.polars

This commit is contained in:
Tim Hessenmüller
2020-12-20 17:45:40 +01:00
parent c09ae47938
commit dcfdedadd4
40 changed files with 43 additions and 40 deletions
@@ -16,6 +16,7 @@ Export-Package: com.sap.sailing.domain.common,
com.sap.sailing.domain.common.media,
com.sap.sailing.domain.common.orc,
com.sap.sailing.domain.common.orc.impl,
com.sap.sailing.domain.common.polars,
com.sap.sailing.domain.common.quadtree,
com.sap.sailing.domain.common.quadtree.impl;x-friends:="com.sap.sailing.domain.test",
com.sap.sailing.domain.common.racelog,
@@ -9,6 +9,7 @@
<source path='common/scalablevalue'/>
<source path='common/racelog/tracking'/>
<source path='common/scalablevalue/impl'/>
<source path='common/polars'/>
<!-- Remove Classes that fit to the remote interfaces but only cause warnings and never could be serialized anyway -->
<extend-configuration-property name="rpc.blacklist" value="com.sap.sailing.domain.common.quadtree.QuadTree"/>
<extend-configuration-property name="rpc.blacklist" value="com.google.gwt.validation.client.impl.PathImpl"/>
@@ -0,0 +1,20 @@
package com.sap.sailing.domain.common.polars;
import java.io.Serializable;
public class NotEnoughDataHasBeenAddedException extends Exception implements Serializable {
private static final long serialVersionUID = 9191379705907500676L;
public NotEnoughDataHasBeenAddedException() {
super("No data has been added to the Processor yet. At least to value-pairs have to be added.");
}
public NotEnoughDataHasBeenAddedException(String string) {
super(string);
}
public NotEnoughDataHasBeenAddedException(String string, Throwable cause) {
super(string, cause);
}
}