bug5108: fix compile problem (missing default constructor in exception class)

This commit is contained in:
Udo Wessels
2020-10-26 13:04:59 +01:00
parent d3dd121162
commit 548124cf34
8 changed files with 620 additions and 610 deletions
@@ -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;