source: trunk/gsdl3/extensions/gsdl-as/src/org/greenstone/gsdlas/profiles/ParseException.java@ 8609

Last change on this file since 8609 was 8609, checked in by schweer, 20 years ago

putting the alerting service servlet under version control

  • Property svn:keywords set to Author Date Id Revision
File size: 604 bytes
Line 
1/*
2 * Created on Nov 1, 2004
3 * Copyright (C) Andrea Schweer, 2004
4 *
5 * This file is part of the Greenstone Alerting Service.
6 * Refer to the COPYING file in the base directory of this package
7 * for licensing information.
8 */
9package org.greenstone.gsdlas.profiles;
10
11/**
12 * Exception thrown when a Predicate cannot be created due to a syntax error.
13 * @author schweer
14 *
15 */
16public class ParseException extends Exception {
17
18 /**
19 * @param message the exception message.
20 * @see Exception#Exception(String)
21 */
22 public ParseException(String message) {
23 super(message);
24 }
25
26}
Note: See TracBrowser for help on using the repository browser.