Oracle Error PLS-00659: constructor method must return SELF AS RESULT

Oracle Error Message

PLS-00659: constructor method must return SELF AS RESULT

Reason for the Error

The return clause of the constructor method did not specify SELF AS RESULT.

Solution

Change the return clause to include RETURN SELF AS RESULT.