source: trunk/src/org/expeditee/actions/IncorrectUseOfStatementException.java@ 570

Last change on this file since 570 was 410, checked in by ra33, 16 years ago

Completed several tasks specified by Rob...

  1. Changing the resize for single text items to use the text items origin as the origin for the resize.
  1. Added message linking to documentation for SIMPLE statements when a statement is used incorrectly.
  1. Other minor changes...
File size: 382 bytes
Line 
1package org.expeditee.actions;
2
3public class IncorrectUseOfStatementException extends Exception {
4
5 /**
6 *
7 */
8 private static final long serialVersionUID = 1L;
9 private String _statement;
10
11
12
13 public IncorrectUseOfStatementException(String message, String statement) {
14 super(message);
15 _statement = statement;
16 }
17
18 public String getStatement() {
19 return _statement;
20 }
21
22}
Note: See TracBrowser for help on using the repository browser.