aboutsummaryrefslogtreecommitdiff
path: root/vendors/uploadify/com/adobe/protocols/dict/events/NoMatchEvent.as
blob: 894d1ae2c7a4859219c5c4026eb7cbe235b17648 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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);
		}
	}
}