summaryrefslogtreecommitdiffstats
path: root/lib/error.go
blob: 3b49a059b887c0edb4f5dee9c55ccf4bf204f53d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// Copyright © 2021 rsiddharth <s@ricketyspace.net>
// SPDX-License-Identifier: ISC

package lib

// CryptoPals Error
type CPError struct {
	err string
}

func (e CPError) Error() string { return e.err }