* @see java.io.FileOutputStream#FileOutputStream(String, boolean)
*/
public RobocodeFileOutputStream(String fileName, boolean append) throws IOException {
this.fileName = fileName;
final IThreadManagerBase threadManager = ContainerBase.getComponent(IThreadManagerBase.class);
if (threadManager == null) {
throw new RobotException("ThreadManager cannot be null!");
}
out = threadManager.createRobotFileStream(fileName, append);
}