001/*
002 * Copyright (C) Cross The Road Electronics.  All rights reserved.
003 * License information can be found in CTRE_LICENSE.txt
004 * For support and suggestions contact support@ctr-electronics.com or file
005 * an issue tracker at https://github.com/CrossTheRoadElec/Phoenix-Releases
006 */
007package com.ctre.phoenixpro.jni;
008
009public class ErrorReportingJNI {
010    /**
011     * Report error to driver station
012     *
013     * @param errorCode Value of the error
014     * @param location  Where the StatusCode was generated
015     */
016    public static native void reportStatusCode(int errorCode, String location);
017}