10 lines
140 B
Go
10 lines
140 B
Go
package adsmod
|
|
|
|
// ADSNotExistError
|
|
type ADSNotExistError struct {
|
|
}
|
|
|
|
func (ADSNotExistError) Error() string {
|
|
return "ads is not exist"
|
|
}
|