KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jacorb > trading > client > typemgr > ParserException


1
2 // Copyright (C) 1998-1999
3
// Object Oriented Concepts, Inc.
4

5 // **********************************************************************
6
//
7
// Copyright (c) 1997
8
// Mark Spruiell (mark@intellisoft.com)
9
//
10
// See the COPYING file for more information
11
//
12
// **********************************************************************
13

14 package org.jacorb.trading.client.typemgr;
15
16 public class ParserException extends Exception JavaDoc
17 {
18   private int m_line;
19
20   public ParserException(String JavaDoc message, int line)
21   {
22     super(message);
23     m_line = line;
24   }
25
26   public int getLine()
27   {
28     return m_line;
29   }
30 }
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
Popular Tags