mirror of
https://github.com/eclipse-sailing-analytics/sailing-analytics.git
synced 2026-09-24 14:38:45 +00:00
Moved NotEnoughDataHasBeenAddedException into GWT module com.sap.sailing.domain.common.polars
This commit is contained in:
@@ -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"/>
|
||||
|
||||
+20
@@ -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);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user