Skip to content

Commit

Permalink
Format code & add exception name to constants
Browse files Browse the repository at this point in the history
  • Loading branch information
inputfalken committed Sep 16, 2023
1 parent 683e22d commit f037119
Show file tree
Hide file tree
Showing 3 changed files with 130 additions and 136 deletions.
10 changes: 3 additions & 7 deletions DynamoDBGenerator.SourceGenerator/Constants.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
using System;
using DynamoDBGenerator.Attributes;
using DynamoDBGenerator.Exceptions;
using Microsoft.CodeAnalysis;

namespace DynamoDBGenerator.SourceGenerator;
Expand All @@ -10,13 +12,7 @@ public static class Constants
public const string MarshallerAttributeName = nameof(DynamoDBMarshallerAttribute);
public const string MarshallerConstructorAttributeName = nameof(DynamoDBMarshallerConstructorAttribute);
public const string DynamoDbDocumentPropertyFullname = $"{AssemblyName}.{AttributeNameSpace}.{MarshallerAttributeName}";

public static class Errors
{


}

public const string MarshallingExceptionName = nameof(DynamoDBMarshallingException);

public const string NewLine = @"
";
Expand Down
Loading

0 comments on commit f037119

Please sign in to comment.