Commit 16e58d63 authored by Noel Alonso's avatar Noel Alonso
Browse files

Añade constructor para enviar argumentos parciales

parent 41115174
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -46,6 +46,12 @@ public class EventApplicationResult {
		this.exceptionArguments = arguments;
	}

	public EventApplicationResult(String exeptionType, String key, String value) {
		this.success = false;
		this.exeptionType = exeptionType;
		addExceptionArgument(key, value);
	}

	public boolean isSuccess() {
		return success;
	}