summaryrefslogtreecommitdiff
path: root/FireBase/FirebaseException.cs
diff options
context:
space:
mode:
authorDennis Kobert <d-kobert@web.de>2019-05-19 17:00:02 +0200
committerDennis Kobert <d-kobert@web.de>2019-05-19 17:00:02 +0200
commitc4d046858e0822b7c2c540ac2368b2c0e88e7a26 (patch)
tree8ff5cfd8646908784a45762a6148ebc150810160 /FireBase/FirebaseException.cs
parentf89f308c525e9deebc6d2cf6416e27dfe1a299dc (diff)
general refectoring
added 42 as dummy Token
Diffstat (limited to 'FireBase/FirebaseException.cs')
-rw-r--r--FireBase/FirebaseException.cs16
1 files changed, 8 insertions, 8 deletions
diff --git a/FireBase/FirebaseException.cs b/FireBase/FirebaseException.cs
index 2f8269d..cfc09d3 100644
--- a/FireBase/FirebaseException.cs
+++ b/FireBase/FirebaseException.cs
@@ -1,8 +1,8 @@
-namespace Firebase.Database
-{
- using System;
- using System.Net;
+using System;
+using System.Net;
+namespace Firebase.Database
+{
public class FirebaseException : Exception
{
public FirebaseException(string requestUrl, string requestData, string responseData, HttpStatusCode statusCode)
@@ -25,22 +25,22 @@
}
/// <summary>
- /// Post data passed to the authentication service.
+ /// Post data passed to the authentication service.
/// </summary>
public string RequestData { get; }
/// <summary>
- /// Original url of the request.
+ /// Original url of the request.
/// </summary>
public string RequestUrl { get; }
/// <summary>
- /// Response from the authentication service.
+ /// Response from the authentication service.
/// </summary>
public string ResponseData { get; }
/// <summary>
- /// Status code of the response.
+ /// Status code of the response.
/// </summary>
public HttpStatusCode StatusCode { get; }