source: trunk/src/org/expeditee/agents/ExistingFramesetException.java@ 636

Last change on this file since 636 was 9, checked in by ra33, 16 years ago

New exception

File size: 307 bytes
Line 
1package org.expeditee.agents;
2
3public class ExistingFramesetException extends Exception {
4
5 /**
6 *
7 */
8 private static final long serialVersionUID = -9139069750643242508L;
9
10 public ExistingFramesetException(String framesetName) {
11 super("A frameset called " + framesetName
12 + " already exists.");
13 }
14}
Note: See TracBrowser for help on using the repository browser.