L2J_GeoDriver, java-engine-1.8 and mmocore libraries are dropped and directly integrated to project under "com.l2jserver.commons".

This commit is contained in:
mobius
2015-01-26 00:20:05 +00:00
parent 56db1f21cf
commit c1dc90a6e0
54 changed files with 3801 additions and 168 deletions

View File

@@ -0,0 +1,11 @@
package com.l2jserver.commons.javaengine;
public class CompilationException extends Exception
{
private static final long serialVersionUID = 1L;
public CompilationException(String message)
{
super(message);
}
}