Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
netcoreplus
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
tsai
netcoreplus
Commits
a8820138
Commit
a8820138
authored
May 14, 2019
by
阿星Plus
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
PlusException
parent
e9f0d223
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
49 additions
and
0 deletions
+49
-0
PlusException.cs
src/Plus/PlusException.cs
+49
-0
No files found.
src/Plus/PlusException.cs
0 → 100644
View file @
a8820138
using
System
;
using
System.Runtime.Serialization
;
namespace
Plus
{
/// <summary>
/// 异常基类
/// </summary>
public
class
PlusException
:
Exception
{
/// <summary>
/// 创建一个新的 <see cref="PlusException"/> 对象
/// </summary>
public
PlusException
()
{
}
/// <summary>
/// 创建一个新的 <see cref="PlusException"/> 对象
/// </summary>
public
PlusException
(
SerializationInfo
serializationInfo
,
StreamingContext
context
)
:
base
(
serializationInfo
,
context
)
{
}
/// <summary>
/// 创建一个新的 <see cref="PlusException"/> 对象
/// </summary>
/// <param name="message">异常消息</param>
public
PlusException
(
string
message
)
:
base
(
message
)
{
}
/// <summary>
/// 创建一个新的 <see cref="PlusException"/> 对象
/// </summary>
/// <param name="message">异常消息</param>
/// <param name="innerException">内部异常</param>
public
PlusException
(
string
message
,
Exception
innerException
)
:
base
(
message
,
innerException
)
{
}
}
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment