1 | /*
|
---|
2 | * Copyright 2001,2004 The Apache Software Foundation.
|
---|
3 | *
|
---|
4 | * Licensed under the Apache License, Version 2.0 (the "License");
|
---|
5 | * you may not use this file except in compliance with the License.
|
---|
6 | * You may obtain a copy of the License at
|
---|
7 | *
|
---|
8 | * http://www.apache.org/licenses/LICENSE-2.0
|
---|
9 | *
|
---|
10 | * Unless required by applicable law or agreed to in writing, software
|
---|
11 | * distributed under the License is distributed on an "AS IS" BASIS,
|
---|
12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
---|
13 | * See the License for the specific language governing permissions and
|
---|
14 | * limitations under the License.
|
---|
15 | */
|
---|
16 |
|
---|
17 | /*
|
---|
18 | * $Id: SchemaDateTimeException.hpp,v 1.3 2004/09/08 13:56:23 peiyongz Exp $
|
---|
19 | * $Log: SchemaDateTimeException.hpp,v $
|
---|
20 | * Revision 1.3 2004/09/08 13:56:23 peiyongz
|
---|
21 | * Apache License Version 2.0
|
---|
22 | *
|
---|
23 | * Revision 1.2 2002/11/04 15:22:04 tng
|
---|
24 | * C++ Namespace Support.
|
---|
25 | *
|
---|
26 | * Revision 1.1.1.1 2002/02/01 22:22:12 peiyongz
|
---|
27 | * sane_include
|
---|
28 | *
|
---|
29 | * Revision 1.1 2001/11/12 20:36:54 peiyongz
|
---|
30 | * SchemaDateTimeException defined
|
---|
31 | *
|
---|
32 | *
|
---|
33 | */
|
---|
34 |
|
---|
35 |
|
---|
36 | #if !defined(SCHEMA_DATETIME_EXCEPTION_HPP)
|
---|
37 | #define SCHEMA_DATETIME_EXCEPTION_HPP
|
---|
38 |
|
---|
39 | #include <xercesc/util/XercesDefs.hpp>
|
---|
40 | #include <xercesc/util/XMLException.hpp>
|
---|
41 |
|
---|
42 | XERCES_CPP_NAMESPACE_BEGIN
|
---|
43 |
|
---|
44 | MakeXMLException(SchemaDateTimeException, XMLUTIL_EXPORT)
|
---|
45 |
|
---|
46 | XERCES_CPP_NAMESPACE_END
|
---|
47 |
|
---|
48 | #endif
|
---|