changing license to BSD, assigning Yahoo copyrights where appropriate
[lwes-java.git] / src / main / java / org / lwes / NoSuchAttributeException.java
blobdaa63dc4446cce59c8974fc1bd8fc71d63dde18f
1 /*======================================================================*
2 * Copyright (c) 2008, Yahoo! Inc. All rights reserved. *
3 * *
4 * Licensed under the New BSD License (the "License"); you may not use *
5 * this file except in compliance with the License. Unless required *
6 * by applicable law or agreed to in writing, software distributed *
7 * under the License is distributed on an "AS IS" BASIS, WITHOUT *
8 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. *
9 * See the License for the specific language governing permissions and *
10 * limitations under the License. See accompanying LICENSE file. *
11 *======================================================================*/
13 package org.lwes;
15 /**
16 * Exception thrown when an attribute does not exist in an Event
17 * @author Anthony Molinaro
19 public class NoSuchAttributeException extends EventSystemException {
20 /**
21 * Overrides <tt>EventSystemException</tt> constructor
23 public NoSuchAttributeException(String s) {
24 super(s);