Skip to content

Commit

Permalink
Re #856: created SystemExitCodes.java for defining codes used at syst…
Browse files Browse the repository at this point in the history
…em exit
  • Loading branch information
AlexandraRoatis committed Mar 21, 2019
1 parent 6002572 commit cf04d21
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions modAionImpl/src/org/aion/zero/impl/SystemExitCodes.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
package org.aion.zero.impl;

/** Error coded to be used when calling {@link System#exit(int)} from the kernel. */
public class SystemExitCodes {

public static final int NORMAL = 0;
public static final int OUT_OF_DISK_SPACE = 1;
}

0 comments on commit cf04d21

Please sign in to comment.