Skip to content

Commit b9b0215

Browse files
committed
Remove public constructor for MySqlConversionException.
This type should not be constructible by consumers.
1 parent bf29c66 commit b9b0215

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/MySqlConnector/MySqlConversionException.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public class MySqlConversionException : Exception
1717
/// Initializes a new instance of <see cref="MySqlConversionException"/>.
1818
/// </summary>
1919
/// <param name="message">The exception message.</param>
20-
public MySqlConversionException(string message)
20+
internal MySqlConversionException(string message)
2121
: base(message)
2222
{
2323
}

0 commit comments

Comments
 (0)