/v3.2/nimbits-tds/src/com/nimbits/client/model/timespan/InvalidTimespanException.java
http://nimbits-server.googlecode.com/ · Java · 39 lines · 11 code · 7 blank · 21 comment · 0 complexity · 7292b7674647c820091fd4498299d2d3 MD5 · raw file
- /*
- * Copyright (c) 2010 Tonic Solutions LLC.
- *
- * http://www.nimbits.com
- *
- *
- * Licensed under the GNU GENERAL PUBLIC LICENSE, Version 3.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
- *
- * http://www.gnu.org/licenses/gpl.html
- *
- * Unless required by applicable law or agreed to in writing, software distributed under the license is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
- */
- package com.nimbits.client.model.timespan;
- import java.io.Serializable;
- /**
- * Created by Benjamin Sautner
- * User: benjamin
- * Date: 4/25/11
- * Time: 7:42 PM
- */
- public class InvalidTimespanException extends Exception implements Serializable {
- /**
- *
- */
- private static final long serialVersionUID = 1L;
- public InvalidTimespanException() {
- super();
- }
- public InvalidTimespanException(String message) {
- super(message);
- }
- }