errors.go 193 Bytes
Newer Older
Patrick Devine's avatar
Patrick Devine committed
1
2
3
4
5
6
package readline

import (
	"errors"
)

Michael Yang's avatar
lint  
Michael Yang committed
7
var ErrInterrupt = errors.New("Interrupt")
Patrick Devine's avatar
Patrick Devine committed
8
9
10
11
12
13
14
15

type InterruptError struct {
	Line []rune
}

func (*InterruptError) Error() string {
	return "Interrupted"
}