source: trunk/src/org/expeditee/agents/InvalidFramesetNameException.java@ 1510

Last change on this file since 1510 was 1239, checked in by bln4, 5 years ago
File size: 397 bytes
Line 
1package org.expeditee.agents;
2
3public class InvalidFramesetNameException extends Exception {
4 /**
5 *
6 */
7 private static final long serialVersionUID = -8634934041998629462L;
8
9 public InvalidFramesetNameException(String name) {
10 super (name + " is not a valid name for a frameset. A valid frameset name starts and ends with a letter and contains only numbers and letters.");
11 }
12}
Note: See TracBrowser for help on using the repository browser.