vote up 0 vote down star

When using Aspect Oriented Programming with Policy injection, how do you deal with policy errors gracefully in your design?

In Aspect Oriented Programming the objects should be unconcerned with how a particular policy is configured, but a particular policy may throw particular errors. What's the most graceful design to deal with that?

flag

2 Answers

vote up 1 vote down check

If you consider the policy to be an "aspect" of the system then the specific aspect should handle everything that has to do with that policy. The objects should be unaware of the specific policy. This way, if you you need to change the policy in the future, you won't need to change anything in the objects.

link|flag
vote up 0 vote down

Why not have your aspect that injects the policy validate it/handle errors that may occur?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.