// Copyright 2017 The Gogs Authors. All rights reserved.// Use of this source code is governed by a MIT-style// license that can be found in the LICENSE file.packageerrorsimport"fmt"typeTwoFactorNotFoundstruct{UserIDint64}funcIsTwoFactorNotFound(errerror)bool{_,ok:=err.(TwoFactorNotFound)returnok}func(errTwoFactorNotFound)Error()string{returnfmt.Sprintf("two-factor authentication does not found [user_id: %d]",err.UserID)}typeTwoFactorRecoveryCodeNotFoundstruct{Codestring}funcIsTwoFactorRecoveryCodeNotFound(errerror)bool{_,ok:=err.(TwoFactorRecoveryCodeNotFound)returnok}func(errTwoFactorRecoveryCodeNotFound)Error()string{returnfmt.Sprintf("two-factor recovery code does not found [code: %s]",err.Code)}