* Replacing NotImplementedError with System.NotImplementedException

* CSJ2K does not have a helper function for encoding at the moment! Need to look into that

git-svn-id: http://libopenmetaverse.googlecode.com/svn/libopenmetaverse/trunk@3143 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
John Hurliman
2009-10-13 22:31:18 +00:00
parent dc22693b61
commit 2e87329e3b
5 changed files with 23 additions and 111 deletions

View File

@@ -667,7 +667,7 @@ namespace CSJ2K.j2k.codestream.reader
kid = filtIdx[0] = ehs.ReadByte();
if (kid >= (1 << 7))
{
throw new NotImplementedError("Custom filters not supported");
throw new NotImplementedException("Custom filters not supported");
}
// Return filter based on ID
switch (kid)