14 lines
239 B
ActionScript
14 lines
239 B
ActionScript
|
package com.adobe.protocols.dict.events
|
||
|
{
|
||
|
import flash.events.Event;
|
||
|
import com.adobe.protocols.dict.Dict;
|
||
|
|
||
|
public class NoMatchEvent
|
||
|
extends Event
|
||
|
{
|
||
|
public function NoMatchEvent()
|
||
|
{
|
||
|
super(Dict.NO_MATCH);
|
||
|
}
|
||
|
}
|
||
|
}
|