Skip to content

Commit

Permalink
Fixed Line ending
Browse files Browse the repository at this point in the history
-Fixed crlf line endings
  • Loading branch information
HEskandari committed Aug 30, 2010
1 parent ccf6848 commit 6f99ecc
Show file tree
Hide file tree
Showing 11 changed files with 746 additions and 746 deletions.
66 changes: 33 additions & 33 deletions Rhino.Licensing/FloatingLicenseNotAvialableException.cs
Original file line number Diff line number Diff line change
@@ -1,49 +1,49 @@
using System;
using System.Runtime.Serialization;

namespace Rhino.Licensing
{
using System;
using System.Runtime.Serialization;

namespace Rhino.Licensing
{
/// <summary>
///
/// </summary>
public class FloatingLicenseNotAvialableException : RhinoLicensingException
{
/// </summary>
public class FloatingLicenseNotAvialableException : RhinoLicensingException
{
/// <summary>
/// Creates a new instance of <seealso cref="FloatingLicenseNotAvialableException"/>.
/// </summary>
public FloatingLicenseNotAvialableException()
{
}

/// </summary>
public FloatingLicenseNotAvialableException()
{
}

/// <summary>
/// Creates a new instance of <seealso cref="FloatingLicenseNotAvialableException"/>.
/// </summary>
/// <param name="message">error message</param>
public FloatingLicenseNotAvialableException(string message)
: base(message)
{
}

/// <param name="message">error message</param>
public FloatingLicenseNotAvialableException(string message)
: base(message)
{
}

/// <summary>
/// Creates a new instance of <seealso cref="FloatingLicenseNotAvialableException"/>.
/// </summary>
/// <param name="message">error message</param>
/// <param name="inner">inner exception</param>
public FloatingLicenseNotAvialableException(string message, Exception inner)
: base(message, inner)
{
}

/// <param name="inner">inner exception</param>
public FloatingLicenseNotAvialableException(string message, Exception inner)
: base(message, inner)
{
}

/// <summary>
/// Creates a new instance of <seealso cref="FloatingLicenseNotAvialableException"/>.
/// </summary>
/// <param name="info">serialization information</param>
/// <param name="context">streaming context</param>
protected FloatingLicenseNotAvialableException(
SerializationInfo info,
StreamingContext context)
: base(info, context)
{
}
}
/// <param name="context">streaming context</param>
protected FloatingLicenseNotAvialableException(
SerializationInfo info,
StreamingContext context)
: base(info, context)
{
}
}
}
22 changes: 11 additions & 11 deletions Rhino.Licensing/InvalidationType.cs
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
namespace Rhino.Licensing
{
namespace Rhino.Licensing
{
/// <summary>
/// InvalidationType
/// </summary>
public enum InvalidationType
{
/// </summary>
public enum InvalidationType
{
/// <summary>
/// Can not create a new license
/// </summary>
CannotGetNewLicense,

/// </summary>
CannotGetNewLicense,

/// <summary>
/// License is expired
/// </summary>
TimeExpired
}
/// </summary>
TimeExpired
}
}
66 changes: 33 additions & 33 deletions Rhino.Licensing/LicenseFileNotFoundException.cs
Original file line number Diff line number Diff line change
@@ -1,50 +1,50 @@
using System;
using System.Runtime.Serialization;

namespace Rhino.Licensing
{
using System;
using System.Runtime.Serialization;

namespace Rhino.Licensing
{
/// <summary>
/// Thrown when a valid license file can not be
/// found on the client machine.
/// </summary>
[Serializable]
public class LicenseFileNotFoundException : RhinoLicensingException
{
/// </summary>
[Serializable]
public class LicenseFileNotFoundException : RhinoLicensingException
{
/// <summary>
/// Creates a new instance of <seealso cref="LicenseFileNotFoundException"/>
/// </summary>
public LicenseFileNotFoundException()
{
}

/// </summary>
public LicenseFileNotFoundException()
{
}

/// <summary>
/// Creates a new instance of <seealso cref="LicenseFileNotFoundException"/>
/// </summary>
/// <param name="message">error message</param>
public LicenseFileNotFoundException(string message)
: base(message)
{
}

/// <param name="message">error message</param>
public LicenseFileNotFoundException(string message)
: base(message)
{
}

/// <summary>
/// Creates a new instance of <seealso cref="LicenseFileNotFoundException"/>
/// </summary>
/// <param name="message">error message</param>
/// <param name="inner">inner exception</param>
public LicenseFileNotFoundException(string message, Exception inner)
: base(message, inner)
{
}

/// <param name="inner">inner exception</param>
public LicenseFileNotFoundException(string message, Exception inner)
: base(message, inner)
{
}

/// <summary>
/// Creates a new instance of <seealso cref="LicenseFileNotFoundException"/>
/// </summary>
/// <param name="info">serialization information</param>
/// <param name="context">streaming context</param>
protected LicenseFileNotFoundException(
SerializationInfo info,
StreamingContext context) : base(info, context)
{
}
}
/// <param name="context">streaming context</param>
protected LicenseFileNotFoundException(
SerializationInfo info,
StreamingContext context) : base(info, context)
{
}
}
}
Loading

0 comments on commit 6f99ecc

Please sign in to comment.