10 lines
141 B
Go
10 lines
141 B
Go
|
package workspace
|
||
|
|
||
|
type errWorkspaceExists struct {
|
||
|
message string
|
||
|
}
|
||
|
|
||
|
func (err *errWorkspaceExists) Error() string {
|
||
|
return err.message
|
||
|
}
|