diff --git a/Exceptions/Images.cs b/Exceptions/Images.cs
index 9024897a0..ab773175f 100644
--- a/Exceptions/Images.cs
+++ b/Exceptions/Images.cs
@@ -41,20 +41,24 @@ using System.Runtime.Serialization;
namespace Aaru.CommonTypes.Exceptions
{
+ ///
/// Feature is supported by image but not implemented yet.
[Serializable]
public class FeatureSupportedButNotImplementedImageException : Exception
{
+ ///
/// Feature is supported by image but not implemented yet.
/// Message.
/// Inner.
public FeatureSupportedButNotImplementedImageException(string message, Exception inner) :
base(message, inner) {}
+ ///
/// Feature is supported by image but not implemented yet.
/// Message.
public FeatureSupportedButNotImplementedImageException(string message) : base(message) {}
+ ///
/// Feature is supported by image but not implemented yet.
/// Info.
/// Context.
@@ -65,19 +69,23 @@ namespace Aaru.CommonTypes.Exceptions
}
}
+ ///
/// Feature is not supported by image.
[Serializable]
public class FeatureUnsupportedImageException : Exception
{
+ ///
/// Feature is not supported by image.
/// Message.
/// Inner.
public FeatureUnsupportedImageException(string message, Exception inner) : base(message, inner) {}
+ ///
/// Feature is not supported by image.
/// Message.
public FeatureUnsupportedImageException(string message) : base(message) {}
+ ///
/// Feature is not supported by image.
/// Info.
/// Context.
@@ -88,19 +96,23 @@ namespace Aaru.CommonTypes.Exceptions
}
}
+ ///
/// Feature is supported by image but not present on it.
[Serializable]
public class FeatureNotPresentImageException : Exception
{
+ ///
/// Feature is supported by image but not present on it.
/// Message.
/// Inner.
public FeatureNotPresentImageException(string message, Exception inner) : base(message, inner) {}
+ ///
/// Feature is supported by image but not present on it.
/// Message.
public FeatureNotPresentImageException(string message) : base(message) {}
+ ///
/// Feature is supported by image but not present on it.
/// Info.
/// Context.
@@ -111,19 +123,23 @@ namespace Aaru.CommonTypes.Exceptions
}
}
+ ///
/// Feature is supported by image but not by the disc it represents.
[Serializable]
public class FeaturedNotSupportedByDiscImageException : Exception
{
+ ///
/// Feature is supported by image but not by the disc it represents.
/// Message.
/// Inner.
public FeaturedNotSupportedByDiscImageException(string message, Exception inner) : base(message, inner) {}
+ ///
/// Feature is supported by image but not by the disc it represents.
/// Message.
public FeaturedNotSupportedByDiscImageException(string message) : base(message) {}
+ ///
/// Feature is supported by image but not by the disc it represents.
/// Info.
/// Context.
@@ -134,19 +150,23 @@ namespace Aaru.CommonTypes.Exceptions
}
}
+ ///
/// Corrupt, incorrect or unhandled feature found on image
[Serializable]
public class ImageNotSupportedException : Exception
{
+ ///
/// Corrupt, incorrect or unhandled feature found on image
/// Message.
/// Inner.
public ImageNotSupportedException(string message, Exception inner) : base(message, inner) {}
+ ///
/// Corrupt, incorrect or unhandled feature found on image
/// Message.
public ImageNotSupportedException(string message) : base(message) {}
+ ///
/// Corrupt, incorrect or unhandled feature found on image
/// Info.
/// Context.
diff --git a/Interfaces/ITapeImage.cs b/Interfaces/ITapeImage.cs
index 61185ebe2..932542e3c 100644
--- a/Interfaces/ITapeImage.cs
+++ b/Interfaces/ITapeImage.cs
@@ -42,6 +42,7 @@ using Aaru.CommonTypes.Structs;
namespace Aaru.CommonTypes.Interfaces
{
+ ///
///
/// Defines an image that can store the information from streaming, digital, tapes
///