Brian Wong

Results 2 issues of Brian Wong

I'm getting this error when I try to compile the package: [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (default-compile) on project luyten: Compilation failure [ERROR] /Users/brianwong/code/mobile/reverseEng/Luyten/src/us/deathmarine/luyten/Model.java:[658,74] incompatible types: java.util.Enumeration cannot be...

``` package main import ( "fmt" "github.com/pkg/errors" ) func GiveError() error { return errors.New("this is an error") } func Outer() error { err := GiveError() return errors.WithStack(err) } func main()...