package elements.exceptions; /** * Created by Guillermo Serrahima on 10/8/16. */ public class NoChatNameException extends Exception { public NoChatNameException() { super("The chat has no title."); } }