Updated Release Archive
Updated Release Archive. Fixed Mage-killer prereqs. Removed old LETO & ConvoCC related files. Added organized spell scroll store. Fixed Gloura spellbook. Various TLK fixes. Reorganized Repo. Removed invalid user folders. Added DocGen back in.
This commit is contained in:
23
nwn/nwnprc/DocGen/trunk/prc/autodoc/TLKReadException.java
Normal file
23
nwn/nwnprc/DocGen/trunk/prc/autodoc/TLKReadException.java
Normal file
@@ -0,0 +1,23 @@
|
||||
package prc.autodoc;
|
||||
|
||||
/**
|
||||
* An exception indicating TLK read failed.
|
||||
*/
|
||||
public class TLKReadException extends java.lang.RuntimeException{
|
||||
private static final long serialVersionUID = 0x0L;
|
||||
|
||||
/**
|
||||
* Creates a new exception.
|
||||
*
|
||||
* @param message The message this exception is to carry
|
||||
*/
|
||||
public TLKReadException(String message) { super(message); }
|
||||
|
||||
/**
|
||||
* Creates a new exception.
|
||||
*
|
||||
* @param message The message this exception is to carry
|
||||
* @param cause Another exception that caused this one to be thrown
|
||||
*/
|
||||
public TLKReadException(String message, Throwable cause){ super(message, cause); }
|
||||
}
|
Reference in New Issue
Block a user