Assignment for RMIT Mixed Reality in 2020
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
409 B

  1. namespace Oculus.Platform.Models
  2. {
  3. using UnityEngine;
  4. using System;
  5. using System.Collections;
  6. using System.Collections.Generic;
  7. public class Error
  8. {
  9. public Error(int code, string message, int httpCode)
  10. {
  11. Message = message;
  12. Code = code;
  13. HttpCode = httpCode;
  14. }
  15. public readonly int Code;
  16. public readonly int HttpCode;
  17. public readonly string Message;
  18. }
  19. }