Added: Add ActivityUtils with functions to start activities for result

This commit is contained in:
agnostic-apollo
2021-10-21 23:01:26 +05:00
parent 3c202928b4
commit f4a997b7dd
3 changed files with 93 additions and 0 deletions

View File

@@ -12,6 +12,7 @@ public class FunctionErrno extends Errno {
public static final Errno ERRNO_UNSET_PARAMETER = new Errno(TYPE, 102, "The %1$s parameter passed to \"%2$s\" must be set.");
public static final Errno ERRNO_UNSET_PARAMETERS = new Errno(TYPE, 103, "The %1$s parameters passed to \"%2$s\" must be set.");
public static final Errno ERRNO_INVALID_PARAMETER = new Errno(TYPE, 104, "The %1$s parameter passed to \"%2$s\" is invalid.\"%3$s\"");
public static final Errno ERRNO_PARAMETER_NOT_INSTANCE_OF = new Errno(TYPE, 104, "The %1$s parameter passed to \"%2$s\" is not an instance of %3$s.");
FunctionErrno(final String type, final int code, final String message) {