Go - Tratamento de Erros

A programação Go fornece uma estrutura de tratamento de erros bastante simples com o tipo de interface de erro embutido da seguinte declaração -

type error interface {
   Error() string
}

As funções normalmente retornam erro como último valor de retorno. Usarerrors.New para construir uma mensagem de erro básica como a seguir -

func Sqrt(value float64)(float64, error) {
   if(value < 0){
      return 0, errors.New("Math: negative number passed to Sqrt")
   }
   return math.Sqrt(value), nil
}

Use o valor de retorno e a mensagem de erro.

result, err:= Sqrt(-1)

if err != nil {
   fmt.Println(err)
}

Exemplo

package main

import "errors"
import "fmt"
import "math"

func Sqrt(value float64)(float64, error) {
   if(value < 0){
      return 0, errors.New("Math: negative number passed to Sqrt")
   }
   return math.Sqrt(value), nil
}
func main() {
   result, err:= Sqrt(-1)

   if err != nil {
      fmt.Println(err)
   } else {
      fmt.Println(result)
   }
   
   result, err = Sqrt(9)

   if err != nil {
      fmt.Println(err)
   } else {
      fmt.Println(result)
   }
}

Quando o código acima é compilado e executado, ele produz o seguinte resultado -

Math: negative number passed to Sqrt
3