mirror of
https://github.com/eclipse-sailing-analytics/sailing-analytics.git
synced 2026-09-24 14:38:45 +00:00
bug5108: fix compile problem (missing default constructor in exception class)
This commit is contained in:
+7
-1
@@ -3,8 +3,14 @@ package com.sap.sailing.domain.common.racelog.tracking;
|
||||
import java.io.Serializable;
|
||||
|
||||
public class MarkAlreadyUsedInRaceException extends Exception implements Serializable {
|
||||
private static final long serialVersionUID = 963948633131929332L;
|
||||
|
||||
private static final long serialVersionUID = 2040461905745135256L;
|
||||
|
||||
public MarkAlreadyUsedInRaceException() {
|
||||
super();
|
||||
this.raceNames = "";
|
||||
}
|
||||
|
||||
public MarkAlreadyUsedInRaceException(String message, String raceNames) {
|
||||
super(message);
|
||||
this.raceNames = raceNames;
|
||||
|
||||
Reference in New Issue
Block a user