1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
|
'
' MalformedLineException.vb
'
' Authors:
' Rolf Bjarne Kvinge (RKvinge@novell.com>
'
' Copyright (C) 2007 Novell (http://www.novell.com)
'
' Permission is hereby granted, free of charge, to any person obtaining
' a copy of this software and associated documentation files (the
' "Software"), to deal in the Software without restriction, including
' without limitation the rights to use, copy, modify, merge, publish,
' distribute, sublicense, and/or sell copies of the Software, and to
' permit persons to whom the Software is furnished to do so, subject to
' the following conditions:
'
' The above copyright notice and this permission notice shall be
' included in all copies or substantial portions of the Software.
'
' THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
' EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
' MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
' NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
' LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
' OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
' WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
'
#If NET_VER >= 2.0 Then
Imports System.ComponentModel
Imports System.Security.Permissions
Imports system.Runtime.Serialization
Namespace Microsoft.VisualBasic.FileIO
<Serializable()> _
Public Class MalformedLineException
Inherits Exception
Private m_LineNumber As Long
Private m_AnyMessage As Boolean
Public Sub New()
MyBase.New()
End Sub
Public Sub New(ByVal message As String)
MyBase.New(message)
m_AnyMessage = message <> String.Empty
End Sub
<EditorBrowsable(EditorBrowsableState.Advanced)> _
Protected Sub New(ByVal info As SerializationInfo, ByVal context As StreamingContext)
MyBase.New(info, context)
If info IsNot Nothing Then m_LineNumber = info.GetInt64("LineNumber")
End Sub
Public Sub New(ByVal message As String, ByVal innerException As Exception)
MyBase.New(message, innerException)
m_AnyMessage = message <> String.Empty
End Sub
Public Sub New(ByVal message As String, ByVal lineNumber As Long)
MyBase.New(message)
m_LineNumber = lineNumber
m_AnyMessage = message <> String.Empty
End Sub
Public Sub New(ByVal message As String, ByVal lineNumber As Long, ByVal innerException As Exception)
MyBase.New(message, innerException)
m_LineNumber = lineNumber
m_AnyMessage = message <> String.Empty
End Sub
<EditorBrowsable(EditorBrowsableState.Advanced), SecurityPermission(SecurityAction.Demand, SerializationFormatter:=True)> _
Public Overrides Sub GetObjectData(ByVal info As SerializationInfo, ByVal context As StreamingContext)
MyBase.GetObjectData(info, context)
If info IsNot Nothing Then info.AddValue("LineNumber", m_LineNumber)
End Sub
Public Overrides Function ToString() As String
Dim msg As String
msg = "Microsoft.VisualBasic.FileIO.MalformedLineException: "
If m_AnyMessage Then
msg &= MyBase.Message
Else
msg &= "Exception of type 'Microsoft.VisualBasic.FileIO.MalformedLineException' was thrown."
End If
If MyBase.InnerException IsNot Nothing Then
msg &= " ---> " & MyBase.InnerException.ToString & Environment.NewLine
msg &= MyBase.InnerException.StackTrace & " --- End of inner exception stack trace ---"
End If
msg = msg & " Line Number:" & m_LineNumber.ToString
Return msg
End Function
<EditorBrowsable(EditorBrowsableState.Always)> _
Public Property LineNumber() As Long
Get
Return m_LineNumber
End Get
Set(ByVal value As Long)
m_LineNumber = value
End Set
End Property
End Class
End Namespace
#End If
|