You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An aspect may specify that a particular join point should never be reached.
/** * @DeclareError(Pointcut) */protectedstatic$errorMessage = 'This is an error message';
/** * @DeclareWarning(Pointcut) */protectedstatic$warningMessage = 'This is a warning message';
If the compiler determines that a join point in Pointcut could possibly be reached, then it will signal either an error or warning, as declared, using the string for its message.
The general form of the statement is this: "Declare it to be a runtime warning/error, if any join point matching the following pointcut expression occurs, and this is the warning message I'd like you to use."
The text was updated successfully, but these errors were encountered:
An aspect may specify that a particular join point should never be reached.
If the compiler determines that a join point in Pointcut could possibly be reached, then it will signal either an error or warning, as declared, using the string for its message.
The general form of the statement is this: "Declare it to be a runtime warning/error, if any join point matching the following pointcut expression occurs, and this is the warning message I'd like you to use."
The text was updated successfully, but these errors were encountered: