Class SFSErrorCodes

java.lang.Object
sfs3.client.util.SFSErrorCodes

public class SFSErrorCodes extends Object
The SFSErrorCodes class provides a mean of translation between server error codes and their relative error messages.

Error messages are provided by default in the English language but they can be localized and substituted in any other language. The error messages contain special placeholders that are processed at runtime and substituted with runtime data. They are in the form of a number enclosed in curly brackets such as: {0}, {1}, etc. Please make sure you maintain these placeholders while translating the messages.

For more informations please check our external documentation.
  • Constructor Details

    • SFSErrorCodes

      public SFSErrorCodes()
  • Method Details

    • setErrorMessage

      public static void setErrorMessage(short code, String message)
      Sets the text of the error message corresponding to the passed error code.

      NOTE: you have to make sure you maintain all the placeholders while modifying the messages.
      Parameters:
      code - The code of the error message to be modified.
      message - The new error message, including the placeholders for runtime informations.

      Example
      The following example shows how to translate error 13 to French language retaining the required placeholders::

       
       private void someMethod() {
           SFSErrorCodes.setErrorMessage(13, "Le Groupe demandé n'est pas disponible - Salle: {0}; Groupe: {1}");
       }
       
       
    • getErrorMessage

      public static String getErrorMessage(short code, Object[] args)
      Internal