xospec1alk
Diamond Member
i have this function
public foo{
public static footype foofunction throws fooexception(...)
}
so im calling foofunction which is supposed to return footype
return foo.foofunction()
but i keep getting an unhandled exception type footype
i put the return in a try catch, but when i catch exception fooexception, what do i put in the body, cause its saying that this function needs to return a footype...
public foo{
public static footype foofunction throws fooexception(...)
}
so im calling foofunction which is supposed to return footype
return foo.foofunction()
but i keep getting an unhandled exception type footype
i put the return in a try catch, but when i catch exception fooexception, what do i put in the body, cause its saying that this function needs to return a footype...