30
20
Mar
C#: Value does not fall within the expected range
To save anybody from a fruitless internet search, the default message for ArgumentException
is the phrase “Value does not fall within the expected range”. This error may be returned from various sources, but in my case it was an explicit throw:
if (someInvalidValue)
{
throw new ArgumentException();
}
So if this error is bubbling up, it’s an ArgumentException
.
Comments
No comments yet. Leave a comment.
07
11
Jun
Quick Tip: “Permissions” Issue with Adobe Extension Manager
If you receive an error while installing an extension to the CS5 (or CS4) suite like “You do not have appropriate permissions” to install the extension, do the following:
- Close Adobe Extension Manager
- Through the Windows programs menu, find Adobe Extension Manager and right-click it
- Select “Run as Administrator”
- Install your extension by double-clicking the .zxp file
Comments
7 comments. Leave a comment.