BowlerKernel
NativeResourceException.java
Go to the documentation of this file.
1 package com.neuronrobotics.imageprovider;
2 
3 public class NativeResourceException extends RuntimeException {
7  private static final long serialVersionUID = 1L;
8  private String message;
9 
10  public NativeResourceException(String msg) {
11  message = msg;
12  }
13 
14  public String toString() {
15  return message;
16  }
17 }