repo.or.cz
/
smsapi-csharp.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Extract response exceptions
[smsapi-csharp.git]
/
smsapi
/
Api
/
Response
/
REST
/
Exception
/
UnauthorizedException.cs
blob
0a454672767091f8475c166cd8d96e52064147f9
1
using
SMSApi
.
Api
;
2
3
namespace
smsapi
.
Api
.
Response
.
REST
.
Exception
;
4
5
public class
UnauthorizedException
:
ClientException
6
{
7
public
UnauthorizedException
() :
base
(
"Invalid credentials"
,
401
)
8
{
9
}
10
}