IteraciĆ³n 3(VersiĆ³n sin idiomas)
[ISBets21MAUBRY] / eclipse-workspace / ISBets21MAUBRY / src / main / java / exceptions / QuestionAlreadyExist.java
1 package exceptions;
2 public class QuestionAlreadyExist extends Exception {
3  private static final long serialVersionUID = 1L;
4  
5  public QuestionAlreadyExist()
6   {
7     super();
8   }
9   /**This exception is triggered if the question already exists 
10   *@param s String of the exception
11   */
12   public QuestionAlreadyExist(String s)
13   {
14     super(s);
15   }
16 }