comparison src/com/go/trove/net/LineTooLongException.java @ 0:3dc0c5604566

Initial checkin of blitz 2.0 fcs - no installer yet.
author Dan Creswell <dan.creswell@gmail.com>
date Sat, 21 Mar 2009 11:00:06 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:3dc0c5604566
1 /*
2 * LineTooLongException.java
3 *
4 * Copyright (c) 2000 Walt Disney Internet Group. All Rights Reserved.
5 *
6 * Original author: Brian S O'Neill
7 *
8 * $Workfile:: LineTooLongException.java $
9 * $Author: dan $
10 * $Revision: 1.1 $
11 * $Date: Mon, 13 Oct 2003 12:20:39 +0100 $
12 */
13
14 package com.go.trove.net;
15
16 /******************************************************************************
17 *
18 * @author Brian S O'Neill
19 * @version
20 * <!--$$Revision: 1.1 $-->, <!--$$JustDate:--> 00/12/06 <!-- $-->
21 */
22 public class LineTooLongException extends java.io.IOException {
23 public LineTooLongException(int limit) {
24 super("> " + limit);
25 }
26 }