10 lines
163 B
Go
10 lines
163 B
Go
package adreviewmod
|
|
|
|
// ADReviewNotExistError
|
|
type ADReviewNotExistError struct {
|
|
}
|
|
|
|
func (ADReviewNotExistError) Error() string {
|
|
return "review is not exist"
|
|
}
|