Skip to content

Commit

Permalink
fix: net8 breakingchanges.
Browse files Browse the repository at this point in the history
  • Loading branch information
lucianareginalino committed Jun 17, 2024
1 parent 8266ec2 commit da51a91
Show file tree
Hide file tree
Showing 14 changed files with 0 additions and 64 deletions.
5 changes: 0 additions & 5 deletions src/Liquid.Core/Exceptions/DatabaseContextException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,6 @@ public DatabaseContextException(string message) : base(message)
{
}

///<inheritdoc/>
protected DatabaseContextException(SerializationInfo info, StreamingContext context) : base(info, context)
{
}

/// <summary>
/// Initializes a new instance of the <see cref="DatabaseContextException"/> class.
/// </summary>
Expand Down
5 changes: 0 additions & 5 deletions src/Liquid.Core/Exceptions/LiquidCustomException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,5 @@ public LiquidCustomException(string message, ExceptionCustomCodes responseCode,
{
ResponseCode = responseCode;
}

///<inheritdoc/>
protected LiquidCustomException(SerializationInfo info, StreamingContext context) : base(info, context)
{
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,5 @@ public LiquidDatabaseSettingsDoesNotExistException(string databaseName)
public LiquidDatabaseSettingsDoesNotExistException(string message, Exception innerException) : base(message, innerException)
{
}

///<inheritdoc/>
protected LiquidDatabaseSettingsDoesNotExistException(SerializationInfo info, StreamingContext context) : base(info, context)
{
}
}
}
5 changes: 0 additions & 5 deletions src/Liquid.Core/Exceptions/MessagingConsumerException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,5 @@ public class MessagingConsumerException : LiquidException
public MessagingConsumerException(Exception innerException) : base("An error has occurred consuming message. See inner exception for more detail.", innerException)
{
}

/// <inheritdoc/>
protected MessagingConsumerException(SerializationInfo info, StreamingContext context) : base(info, context)
{
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,5 @@ public MessagingMissingConfigurationException(string message) : base(message)
{
}

/// <inheritdoc/>
protected MessagingMissingConfigurationException(SerializationInfo info, StreamingContext context) : base(info, context)
{
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,5 @@ public MessagingMissingContextKeysException(string message, Exception innerExcep
{
}

///<inheritdoc/>
protected MessagingMissingContextKeysException(SerializationInfo info, StreamingContext context) : base(info, context)
{
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,5 @@ public MessagingMissingScopedKeysException(string contextKey) : base($"The value
public MessagingMissingScopedKeysException(string message, Exception innerException) : base(message, innerException)
{
}

///<inheritdoc/>
protected MessagingMissingScopedKeysException(SerializationInfo info, StreamingContext context) : base(info, context)
{
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,5 @@ public MessagingMissingSettingsException(string settingsName) : base($"The messa
public MessagingMissingSettingsException(string message, Exception innerException) : base(message, innerException)
{
}

///<inheritdoc/>
protected MessagingMissingSettingsException(SerializationInfo info, StreamingContext context) : base(info, context)
{
}
}
}
4 changes: 0 additions & 4 deletions src/Liquid.Core/Exceptions/MessagingProducerException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,5 @@ public class MessagingProducerException : LiquidException
{
}

/// <inheritdoc/>
protected MessagingProducerException(SerializationInfo info, StreamingContext context) : base(info, context)
{
}
}
}
4 changes: 0 additions & 4 deletions src/Liquid.Core/Exceptions/SerializerFailException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,5 @@ public SerializerFailException(string nameOfContent, Exception innerException) :
{
}

///<inheritdoc/>
protected SerializerFailException(SerializationInfo info, StreamingContext context) : base(info, context)
{
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,5 @@ public UnitOfWorkTransactionNotStartedException(string message, Exception innerE
{
}

///<inheritdoc/>
protected UnitOfWorkTransactionNotStartedException(SerializationInfo info, StreamingContext context) : base(info, context)
{
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,5 @@ public UnitofWorkTransactionWithoutRepositoryException(string message) : base(me
public UnitofWorkTransactionWithoutRepositoryException(string message, Exception innerException) : base(message, innerException)
{
}

///<inheritdoc/>
protected UnitofWorkTransactionWithoutRepositoryException(SerializationInfo info, StreamingContext context) : base(info, context)
{
}
}
}
4 changes: 0 additions & 4 deletions src/Liquid.Core/Localization/LocalizationException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,5 @@ public LocalizationException(string key, Exception innerException) : base($"Unab
{
}

///<inheritdoc/>
protected LocalizationException(SerializationInfo info, StreamingContext context) : base(info, context)
{
}
}
}
5 changes: 0 additions & 5 deletions src/Liquid.Core/Localization/LocalizationReaderException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,5 @@ public class LocalizationReaderException : LiquidException
public LocalizationReaderException(Exception innerException) : base("An error occurred while reading the resource collection from datasource.", innerException)
{
}

///<inheritdoc/>
protected LocalizationReaderException(SerializationInfo info, StreamingContext context) : base(info, context)
{
}
}
}

0 comments on commit da51a91

Please sign in to comment.