Back to project page Game-of-thrones-trivia.
The source code is released under:
MIT License
If you think the Android project Game-of-thrones-trivia listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.GameOfThrones.Trivia.core; //from w w w . j av a 2s. com /** * Exception thrown by the Questions Manager object to indicate that there aren't * anymore trivia questions remaining * @author andre * */ public class OutOfQuestionsException extends RuntimeException { /** * Used to identify object during serialization processes */ private static final long serialVersionUID = -3468988262116632664L; /** * Default constructor that displays class custom error message */ public OutOfQuestionsException() { super("Out of trivia questions"); } /** * Constructor * @param message - situation custom error message */ public OutOfQuestionsException(String message) { super(message); } }