diff --git a/Snowflake.Data/Core/FileTransfer/StorageClient/SFStorageClientUtil.cs b/Snowflake.Data/Core/FileTransfer/StorageClient/SFStorageClientUtil.cs deleted file mode 100644 index c7d474080..000000000 --- a/Snowflake.Data/Core/FileTransfer/StorageClient/SFStorageClientUtil.cs +++ /dev/null @@ -1,39 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Text; - -namespace Snowflake.Data.Core.FileTransfer.StorageClient -{ - class SFStorageClientUtil - { - /// - /// The bad request error code. - /// - public static readonly string BAD_REQUEST_ERR = "400"; - - /// - /// The unauthorized error code. - /// - public static readonly string UNAUTHORIZED_ERR = "401"; - - /// - /// The forbidden error code. - /// - public static readonly string FORBIDDEN_ERR = "403"; - - /// - /// The not found error code. - /// - public static readonly string NOT_FOUND_ERR = "404"; - - /// - /// The internal server error code. - /// - public static readonly string INTERNAL_SERVER_ERR = "500"; - - /// - /// The server unavailable error code. - /// - public static readonly string SERVER_UNAVAILABLE_ERR = "503"; - } -}