Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[aspectj-dev] Only before advice is supported on handler join points (compiler limitation)

hi!

i've got the error in the subject. i would like to automatically fill
context information into thrown exceptions with advices, but seems like
i will not do that for now.

and my question: is it a big limitation, or a small one that i can
expect to be gone in a few weeks/months?

thanks,

- 101

before(EntityMetadata.Property property) throwing(MetadataException e):
	this(property)
{
	e.setProperty(property);
}


Back to the top