init
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)" GeneratedClassNamespace="DTS.Serialization.Properties" GeneratedClassName="Settings1">
|
||||
<Profiles />
|
||||
<Settings>
|
||||
<Setting Name="TDMFolder" Type="System.String" Scope="User">
|
||||
<Value Profile="(Default)">.\Data\TDM CFC1000</Value>
|
||||
</Setting>
|
||||
<Setting Name="DefaultStart" Type="System.Double" Scope="User">
|
||||
<Value Profile="(Default)">-500</Value>
|
||||
</Setting>
|
||||
<Setting Name="DefaultStop" Type="System.Double" Scope="User">
|
||||
<Value Profile="(Default)">500</Value>
|
||||
</Setting>
|
||||
<Setting Name="TSVPOCNameLastUsed" Type="System.String" Scope="User">
|
||||
<Value Profile="(Default)">#NOVALUE</Value>
|
||||
</Setting>
|
||||
<Setting Name="TSVPOCPhoneAndEmailLastUsed" Type="System.String" Scope="User">
|
||||
<Value Profile="(Default)">#NOVALUE</Value>
|
||||
</Setting>
|
||||
<Setting Name="TSVDataTypeLastUsed" Type="System.String" Scope="User">
|
||||
<Value Profile="(Default)">Converted</Value>
|
||||
</Setting>
|
||||
<Setting Name="TSVLabNameLastUsed" Type="System.String" Scope="User">
|
||||
<Value Profile="(Default)">#NOVALUE</Value>
|
||||
</Setting>
|
||||
<Setting Name="TSVTestObjectLastUsed" Type="System.String" Scope="User">
|
||||
<Value Profile="(Default)">#NOVALUE</Value>
|
||||
</Setting>
|
||||
<Setting Name="TSVTestTypeLastUsed" Type="System.String" Scope="User">
|
||||
<Value Profile="(Default)">#NOVALUE</Value>
|
||||
</Setting>
|
||||
<Setting Name="TableHeader" Type="System.Drawing.Color" Scope="Application">
|
||||
<Value Profile="(Default)">215, 225, 255</Value>
|
||||
</Setting>
|
||||
<Setting Name="AlternatingRow" Type="System.Drawing.Color" Scope="User">
|
||||
<Value Profile="(Default)">238, 242, 255</Value>
|
||||
</Setting>
|
||||
</Settings>
|
||||
</SettingsFile>
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,63 @@
|
||||
/*
|
||||
* SliceRaw.File.Reader.MissingFileException.cs
|
||||
*
|
||||
* Copyright © 2009
|
||||
* Diversified Technical Systems, Inc.
|
||||
* All Rights Reserved
|
||||
*/
|
||||
|
||||
namespace DTS.Serialization.SliceRaw
|
||||
{
|
||||
// *** see SliceRaw.File.cs ***
|
||||
public partial class File
|
||||
{
|
||||
// *** see SliceRaw.File.Reader.cs ***
|
||||
public partial class Reader
|
||||
{ ///
|
||||
/// <summary>
|
||||
/// Representation of a missing-file filer event.
|
||||
/// </summary>
|
||||
///
|
||||
public class MissingFileException : Exception
|
||||
{ ///
|
||||
/// <summary>
|
||||
/// Initialize an instance of the MissingFileException class.
|
||||
/// </summary>
|
||||
///
|
||||
public MissingFileException()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Initialize an instance of the MissingFileException class.
|
||||
/// </summary>
|
||||
///
|
||||
/// <param name="msg">
|
||||
/// The <see cref="string"/> message to be associated with this exception.
|
||||
/// </param>
|
||||
///
|
||||
public MissingFileException(string msg)
|
||||
: base(msg)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Initialize an instance of the MissingFileException class.
|
||||
/// </summary>
|
||||
///
|
||||
/// <param name="msg">
|
||||
/// The <see cref="string"/> message to be associated with this exception.
|
||||
/// </param>
|
||||
///
|
||||
/// <param name="innerEx">
|
||||
/// The inner <see cref="System.Exception"/> that led to this exception's inception.
|
||||
/// </param>
|
||||
///
|
||||
public MissingFileException(string msg, System.Exception innerEx)
|
||||
: base(msg, innerEx)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user