VersiĆ³n del proyecto de Apuestas tras la iteraciĆ³n 1
[ISBets21MAUBRY] / eclipse-workspace / ISBets21BRYMAUJONUNA / src / main / java / exceptions / EventFinished.java
1 package exceptions;
2 public class EventFinished extends Exception {
3  private static final long serialVersionUID = 1L;
4  
5  public EventFinished()
6   {
7     super();
8   }
9   /**This exception is triggered if the event has already finished
10   *@param s String of the exception
11   */
12   public EventFinished(String s)
13   {
14     super(s);
15   }
16 }