// 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)}