summaryrefslogtreecommitdiffstats
path: root/lib/error.go
blob: 6df5aa9e26b5128cc929148cde363ddf422f8ee1 (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 }