10 lines
128 B
Go
10 lines
128 B
Go
|
package goqr
|
||
|
|
||
|
type DataTooLongException struct {
|
||
|
Msg string
|
||
|
}
|
||
|
|
||
|
func (d *DataTooLongException) Error() string {
|
||
|
return d.Msg
|
||
|
}
|