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