Skip to content

Commit

Permalink
Translate comments in ConfigurationErrorException #393
Browse files Browse the repository at this point in the history
  • Loading branch information
smehrbrodt committed Sep 22, 2022
1 parent 0ac63fb commit da83293
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,10 @@
package de.muenchen.allg.itd51.wollmux.config;

/**
* wird geworfen, wenn eine Fehlkonfiguration festgestellt wird (d.h. Benutzer hat Config verbockt)
* @author Matthias Benkmann (D-III-ITD 5.1)
* Is thrown when a misconfiguration is detected (user error)
*/
public class ConfigurationErrorException extends RuntimeException
{
/**
* keine Ahnung, was das soll, aber es macht Eclipse glücklich.
*/
private static final long serialVersionUID = -2457549809413613658L;
public ConfigurationErrorException() {super();}
public ConfigurationErrorException(String message) {super(message);}
Expand Down

0 comments on commit da83293

Please sign in to comment.