Source Code Cross Referenced for XMLParseException.java in  » Swing-Library » jide-common » com » jidesoft » plaf » aqua » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Swing Library » jide common » com.jidesoft.plaf.aqua 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /* XMLParseException.java
002:         *
003:         * $Revision: 1.4 $
004:         * $Date: 2002/03/24 10:27:59 $
005:         * $Name: RELEASE_2_2_1 $
006:         *
007:         * This file is part of NanoXML 2 Lite.
008:         * Copyright (C) 2000-2002 Marc De Scheemaecker, All Rights Reserved.
009:         *
010:         * This software is provided 'as-is', without any express or implied warranty.
011:         * In no event will the authors be held liable for any damages arising from the
012:         * use of this software.
013:         *
014:         * Permission is granted to anyone to use this software for any purpose,
015:         * including commercial applications, and to alter it and redistribute it
016:         * freely, subject to the following restrictions:
017:         *
018:         *  1. The origin of this software must not be misrepresented; you must not
019:         *     claim that you wrote the original software. If you use this software in
020:         *     a product, an acknowledgment in the product documentation would be
021:         *     appreciated but is not required.
022:         *
023:         *  2. Altered source versions must be plainly marked as such, and must not be
024:         *     misrepresented as being the original software.
025:         *
026:         *  3. This notice may not be removed or altered from any source distribution.
027:         *****************************************************************************/
028:
029:        package com.jidesoft.plaf.aqua;
030:
031:        /**
032:         * An XMLParseException is thrown when an error occures while parsing an XML
033:         * string.
034:         * <p/>
035:         * $Revision: 1.4 $<BR>
036:         * $Date: 2002/03/24 10:27:59 $<P>
037:         *
038:         * @author Marc De Scheemaecker
039:         * @version $Name: RELEASE_2_2_1 $, $Revision: 1.4 $
040:         * @see XMLElement
041:         */
042:        class XMLParseException extends RuntimeException {
043:
044:            /**
045:             * Indicates that no line number has been associated with this exception.
046:             */
047:            public static final int NO_LINE = -1;
048:
049:            /**
050:             * The line number in the source code where the error occurred, or
051:             * <code>NO_LINE</code> if the line number is unknown.
052:             * <p/>
053:             * <dl><dt><b>Invariants:</b></dt><dd>
054:             * <ul><li><code>lineNr &gt 0 || lineNr == NO_LINE</code>
055:             * </ul></dd></dl>
056:             */
057:            private int lineNr;
058:
059:            /**
060:             * Creates an exception.
061:             *
062:             * @param name    The name of the element where the error is located.
063:             * @param message A message describing what went wrong.
064:             *                <p/>
065:             *                </dl><dl><dt><b>Preconditions:</b></dt><dd>
066:             *                <ul><li><code>message != null</code>
067:             *                </ul></dd></dl>
068:             *                <p/>
069:             *                <dl><dt><b>Postconditions:</b></dt><dd>
070:             *                <ul><li>getLineNr() => NO_LINE
071:             *                </ul></dd></dl><dl>
072:             */
073:            public XMLParseException(String name, String message) {
074:                super ("XML Parse Exception during parsing of "
075:                        + ((name == null) ? "the XML definition"
076:                                : ("a " + name + " element")) + ": " + message);
077:                this .lineNr = XMLParseException.NO_LINE;
078:            }
079:
080:            /**
081:             * Creates an exception.
082:             *
083:             * @param name    The name of the element where the error is located.
084:             * @param lineNr  The number of the line in the input.
085:             * @param message A message describing what went wrong.
086:             *                <p/>
087:             *                </dl><dl><dt><b>Preconditions:</b></dt><dd>
088:             *                <ul><li><code>message != null</code>
089:             *                <li><code>lineNr &gt; 0</code>
090:             *                </ul></dd></dl>
091:             *                <p/>
092:             *                <dl><dt><b>Postconditions:</b></dt><dd>
093:             *                <ul><li>getLineNr() => lineNr
094:             *                </ul></dd></dl><dl>
095:             */
096:            public XMLParseException(String name, int lineNr, String message) {
097:                super ("XML Parse Exception during parsing of "
098:                        + ((name == null) ? "the XML definition"
099:                                : ("a " + name + " element")) + " at line "
100:                        + lineNr + ": " + message);
101:                this .lineNr = lineNr;
102:            }
103:
104:            /**
105:             * Where the error occurred, or <code>NO_LINE</code> if the line number is
106:             * unknown.
107:             *
108:             * @see nanoxml.XMLParseException#NO_LINE
109:             */
110:            public int getLineNr() {
111:                return this.lineNr;
112:            }
113:
114:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.