diff --git a/irc/errors.go b/irc/errors.go index 7909099b..9354d59a 100644 --- a/irc/errors.go +++ b/irc/errors.go @@ -10,17 +10,17 @@ import "errors" // Runtime Errors var ( errAccountAlreadyRegistered = errors.New("Account already exists") + errAccountAlreadyVerified = errors.New("Account is already verified") + errAccountCantDropPrimaryNick = errors.New("Can't unreserve primary nickname") errAccountCreation = errors.New("Account could not be created") errAccountDoesNotExist = errors.New("Account does not exist") + errAccountInvalidCredentials = errors.New("Invalid account credentials") + errAccountNickReservationFailed = errors.New("Could not (un)reserve nick") errAccountNotLoggedIn = errors.New("You're not logged into an account") + errAccountTooManyNicks = errors.New("Account has too many reserved nicks") + errAccountUnverified = errors.New("Account is not yet verified") errAccountVerificationFailed = errors.New("Account verification failed") errAccountVerificationInvalidCode = errors.New("Invalid account verification code") - errAccountUnverified = errors.New("Account is not yet verified") - errAccountAlreadyVerified = errors.New("Account is already verified") - errAccountInvalidCredentials = errors.New("Invalid account credentials") - errAccountTooManyNicks = errors.New("Account has too many reserved nicks") - errAccountNickReservationFailed = errors.New("Could not (un)reserve nick") - errAccountCantDropPrimaryNick = errors.New("Can't unreserve primary nickname") errCallbackFailed = errors.New("Account verification could not be sent") errCertfpAlreadyExists = errors.New("An account already exists with your certificate") errChannelAlreadyRegistered = errors.New("Channel is already registered")