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

package lib

// CryptoPals Error
type CPError struct {
	Err string
}

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