aboutsummaryrefslogtreecommitdiff
path: root/BackEnd/Timeline/Services/Token/UserTokenUserNotExistException.cs
blob: 28f5693891e3de96760465ab1f6fe56aaf424277 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;

namespace Timeline.Services.Token
{
    [Serializable]
    public class UserTokenUserNotExistException : UserTokenException
    {
        public UserTokenUserNotExistException() : base(Resource.ExceptionUserTokenUserNotExist) { }
        public UserTokenUserNotExistException(string token) : base(token, Resource.ExceptionUserTokenUserNotExist) { }
        public UserTokenUserNotExistException(string token, Exception inner) : base(token, Resource.ExceptionUserTokenUserNotExist, inner) { }

        protected UserTokenUserNotExistException(
          System.Runtime.Serialization.SerializationInfo info,
          System.Runtime.Serialization.StreamingContext context) : base(info, context) { }
    }
}