File: ErrorCodes.hs

package info (click to toggle)
haskell-ircbot 0.6.6.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 144 kB
  • sloc: haskell: 881; makefile: 2
file content (19 lines) | stat: -rw-r--r-- 349 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{-# LANGUAGE OverloadedStrings #-}
module Network.IRC.Bot.ErrorCodes where

import Data.ByteString (ByteString)

-- * Nickname errors

noNicknameGiven :: ByteString
noNicknameGiven = "431"

erroneusNickname :: ByteString
erroneusNickname = "432"

nicknameInUse :: ByteString
nicknameInUse = "433"

nickCollision :: ByteString
nickCollision = "436"