mirror of
https://github.com/kanaka/mal.git
synced 2024-11-10 12:47:45 +03:00
11 lines
172 B
Haxe
11 lines
172 B
Haxe
package types;
|
|
|
|
import types.Types.MalType;
|
|
|
|
class MalException {
|
|
public var obj:MalType = null;
|
|
public function new(obj:MalType) {
|
|
this.obj = obj;
|
|
}
|
|
}
|