1 6 7 package com.hp.hpl.jena.shared; 8 9 import com.hp.hpl.jena.graph.*; 10 11 16 17 public class UpdateDeniedException extends JenaException 18 { 19 private Triple triple; 20 21 public UpdateDeniedException( String message ) 22 { super(message); } 23 24 public UpdateDeniedException( String message, Triple triple ) 25 { 26 super( message + triple.toString() ); 27 this.triple = triple; 28 } 29 30 public Triple getTriple() 31 { return triple; } 32 } 33 34 | Popular Tags |