RAISE_APPLICATION_ERROR is a built-in PL/SQL procedure that requires two parameters: an error code (must be between -20001 and -20999) and an error message string. Option B is correct with error code -20001 and a message. Option C uses -21001 which is outside the valid range, while options A and D are missing the required message parameter.